mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-22 06:32:07 +02:00
19.0 vanilla
This commit is contained in:
parent
20ddc1b4a3
commit
c0efcc53f5
1162 changed files with 125577 additions and 105287 deletions
|
|
@ -10,37 +10,14 @@ pip install odoo-bringout-oca-ocb-microsoft_outlook
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- mail
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Microsoft Outlook
|
||||
- **Version**: 1.1
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `microsoft_outlook`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/microsoft_outlook
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -15,5 +15,7 @@
|
|||
"views/res_config_settings_views.xml",
|
||||
"views/templates.xml",
|
||||
],
|
||||
"auto_install": True,
|
||||
"author": "Odoo S.A.",
|
||||
"license": "LGPL-3",
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
import json
|
||||
import logging
|
||||
import werkzeug
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo import http
|
||||
from odoo import _, http
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.http import request
|
||||
from odoo.tools import consteq
|
||||
from odoo.tools import consteq, email_normalize
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
@ -24,9 +24,12 @@ class MicrosoftOutlookController(http.Controller):
|
|||
We will fetch the refresh token and the access token thanks to this authorization
|
||||
code and save those values on the given mail server.
|
||||
"""
|
||||
if not request.env.user.has_group('base.group_system'):
|
||||
_logger.error('Microsoft Outlook: Non system user try to link an Outlook account.')
|
||||
raise Forbidden()
|
||||
if error_description:
|
||||
_logger.warning("Microsoft Outlook: an error occurred %s", error_description)
|
||||
return request.render('microsoft_outlook.microsoft_outlook_oauth_error', {
|
||||
'error': error_description,
|
||||
'redirect_url': '/odoo',
|
||||
})
|
||||
|
||||
try:
|
||||
state = json.loads(state)
|
||||
|
|
@ -37,40 +40,97 @@ class MicrosoftOutlookController(http.Controller):
|
|||
_logger.error('Microsoft Outlook: Wrong state value %r.', state)
|
||||
raise Forbidden()
|
||||
|
||||
if error_description:
|
||||
record_sudo = self._get_outlook_record(model_name, rec_id, csrf_token)
|
||||
|
||||
try:
|
||||
refresh_token, access_token, expiration = record_sudo._fetch_outlook_refresh_token(code)
|
||||
except UserError as e:
|
||||
return request.render('microsoft_outlook.microsoft_outlook_oauth_error', {
|
||||
'error': error_description,
|
||||
'model_name': model_name,
|
||||
'rec_id': rec_id,
|
||||
'error': str(e),
|
||||
'redirect_url': self._get_redirect_url(record_sudo),
|
||||
})
|
||||
|
||||
return self._check_email_and_redirect_to_outlook_record(access_token, expiration, refresh_token, record_sudo)
|
||||
|
||||
@http.route('/microsoft_outlook/iap_confirm', type='http', auth='user')
|
||||
def microsoft_outlook_iap_callback(self, model, rec_id, csrf_token, access_token, refresh_token, expiration):
|
||||
"""Receive back the refresh token and access token from IAP.
|
||||
|
||||
The authentication process with IAP is done in 4 steps;
|
||||
1. User database make a request to `<IAP>/api/mail_oauth/1/outlook`
|
||||
2. User browser is redirected to the URL we received from IAP
|
||||
3. User browser is redirected to `<IAP>/api/mail_oauth/1/outlook_callback`
|
||||
with the authorization_code
|
||||
4. User browser is redirected to `<DB>/microsoft_outlook/iap_confirm`
|
||||
"""
|
||||
record = self._get_outlook_record(model, rec_id, csrf_token)
|
||||
return self._check_email_and_redirect_to_outlook_record(access_token, expiration, refresh_token, record)
|
||||
|
||||
def _get_outlook_record(self, model_name, rec_id, csrf_token):
|
||||
"""Return the given record after checking the CSRF token."""
|
||||
model = request.env[model_name]
|
||||
|
||||
if not isinstance(model, request.env.registry['microsoft.outlook.mixin']):
|
||||
# The model must inherits from the "microsoft.outlook.mixin" mixin
|
||||
_logger.error('Microsoft Outlook: Wrong model %r.', model_name)
|
||||
raise Forbidden()
|
||||
|
||||
record = model.browse(rec_id).exists()
|
||||
record = model.browse(int(rec_id)).exists().sudo()
|
||||
if not record:
|
||||
_logger.error('Microsoft Outlook: Record not found.')
|
||||
raise Forbidden()
|
||||
|
||||
if not csrf_token or not consteq(csrf_token, record._get_outlook_csrf_token()):
|
||||
_logger.error('Microsoft Outlook: Wrong CSRF token during Outlook authentication.')
|
||||
raise Forbidden()
|
||||
|
||||
try:
|
||||
refresh_token, access_token, expiration = record._fetch_outlook_refresh_token(code)
|
||||
except UserError as e:
|
||||
return request.render('microsoft_outlook.microsoft_outlook_oauth_error', {
|
||||
'error': str(e.name),
|
||||
'model_name': model_name,
|
||||
'rec_id': rec_id,
|
||||
})
|
||||
return record
|
||||
|
||||
def _check_email_and_redirect_to_outlook_record(self, access_token, expiration, refresh_token, record):
|
||||
if (record._name == 'ir.mail_server' and (record.owner_user_id or not request.env.user.has_group('base.group_system'))):
|
||||
# Verify the token information (that the email set on the
|
||||
# server is the email used to login on Outlook)
|
||||
# We can not directly get the id_token from the response, even if we verify the signature
|
||||
# because it comes from the user's browser redirection, and he could give an id_token of one account
|
||||
# and the refresh_token of a different account.
|
||||
# So we ask a new token to the outlook API to check the email address
|
||||
# Because we received the JWT token from the API (or from IAP, with a direct HTTP request),
|
||||
# we don't even need to check the signature
|
||||
refresh_token, access_token, id_token, expiration = record._fetch_outlook_access_token(refresh_token)
|
||||
id_token_data = id_token.split(".")[1]
|
||||
id_token_data += '=' * (-len(id_token_data) % 4) # `=` padding can be missing
|
||||
email = json.loads(base64.b64decode(id_token_data)).get('email')
|
||||
if not email or email_normalize(email) != email_normalize(record[record._email_field]):
|
||||
_logger.error('Microsoft Outlook: Invalid email address: %r != %s.', email, record[record._email_field])
|
||||
return request.render('microsoft_outlook.microsoft_outlook_oauth_error', {
|
||||
'error': _(
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your address is %(email_server)s. Make sure your addresses match!",
|
||||
email_login=email,
|
||||
email_server=record[record._email_field],
|
||||
),
|
||||
'redirect_url': self._get_redirect_url(record),
|
||||
})
|
||||
|
||||
record.write({
|
||||
'active': True,
|
||||
'microsoft_outlook_refresh_token': refresh_token,
|
||||
'microsoft_outlook_access_token': access_token,
|
||||
'microsoft_outlook_access_token_expiration': expiration,
|
||||
})
|
||||
return request.redirect(self._get_redirect_url(record))
|
||||
|
||||
return request.redirect(f'/web?#id={rec_id}&model={model_name}&view_type=form')
|
||||
def _get_redirect_url(self, record):
|
||||
"""Return the redirect URL for the given record.
|
||||
|
||||
If the user configured a personal mail server, we redirect him
|
||||
to the user preference view. If it's an admin and that he
|
||||
configured a standard incoming / outgoing mail server, then we
|
||||
redirect it to the mail server form view.
|
||||
"""
|
||||
if (
|
||||
(record._name != 'ir.mail_server'
|
||||
or record != request.env.user.outgoing_mail_server_id)
|
||||
and request.env.user.has_group('base.group_system')
|
||||
):
|
||||
return f'/odoo/{record._name}/{record.id}'
|
||||
return f'/odoo/my-preferences/{request.env.user.id}'
|
||||
|
|
|
|||
|
|
@ -1,34 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Malaz Siddig Elsayed Abuidris (msea)" <msea@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\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: 2026-01-05 14:58+0000\n"
|
||||
"Last-Translator: \"Malaz Siddig Elsayed Abuidris (msea)\" <msea@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" قم بتوصيل حساب Outlook الخاص بك "
|
||||
"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.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,78 +31,114 @@ msgstr "<i class=\"fa fa-cog\" title=\"تحرير الإعدادات \"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" قم بتوصيل حساب Outlook الخاص بك"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" رمز Outlook صالح\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" رمز Outlook صالح\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "نشط"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "وقع خطأ أثناء جلب رمز الوصول. %s "
|
||||
msgstr "وقع خطأ أثناء جلب رمز الوصول. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "المصادقة مع "
|
||||
msgstr "المصادقة مع"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "رابط المصادقة "
|
||||
msgstr "رابط المصادقة"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
msgstr "تهيئة الإعدادات"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"قم بتوصيل حساب Outlook الخاص بك مع عملية مصادقة OAuth. \n"
|
||||
"افتراضياً، سيُسمح فقط للمستخدم الذي يملك عنوان البريد الإلكتروني المطابق استخدام هذا الخادم. لزيادة إمكانية استخدامه، عليك تعيين معيار نظام \"mail.default.from\". "
|
||||
"افتراضياً، سيُسمح فقط للمستخدم الذي يملك عنوان البريد الإلكتروني المطابق "
|
||||
"استخدام هذا الخادم. لزيادة إمكانية استخدامه، عليك تعيين معيار نظام "
|
||||
"\"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"قم بتوصيل حساب Outlook الشخصي باستخدام OAuth. \n"
|
||||
"ستتم إعادة توجيهك إلى صفحة تسجيل الدخول إلى Outlook لقبول الأذونات. "
|
||||
"ستتم إعادة توجيهك إلى صفحة تسجيل الدخول إلى Outlook لقبول الأذونات."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "العودة إلى خادم بريدك "
|
||||
msgid "Go back"
|
||||
msgstr "العودة"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
|
@ -117,122 +146,141 @@ msgstr "المُعرف"
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr "معرّف تطبيق Outlook "
|
||||
msgstr "معرّف تطبيق Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "خادم البريد الوارد "
|
||||
msgstr "خادم البريد الوارد"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"أمان الاتصال غير صالح لخادم بريد Outlook الإلكتروني %r. يرجى تعيينه لـ \"TLS"
|
||||
" (STARTTLS)\". "
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "تمت تهيئة بيانات اعتماد Outlook "
|
||||
"أمان الاتصال غير صالح لخادم بريد Outlook الإلكتروني \"%s\". يرجى تعيينه لـ "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "خادم البريد الإلكتروني "
|
||||
msgstr "خادم البريد الإلكتروني"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "مجموعة مخصصات Microsoft Outlook "
|
||||
msgstr "مجموعة مخصصات Microsoft Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "وحده المدير بوسعه ربط خادم بريد Outlook. "
|
||||
msgstr "وحده المدير بوسعه ربط خادم بريد Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"عفواً، أنت تقوم بإنشاء تفويض للإرسال من %(email_login)s ولكن عنوانك هو %"
|
||||
"(email_server)s. تأكد من تطابق عناوينك!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "رمز وصول Outlook "
|
||||
msgstr "رمز وصول Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "الطابع الزمني لانتهاء صلاحية رمز وصول Outlook "
|
||||
msgstr "الطابع الزمني لانتهاء صلاحية رمز وصول Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "معرف عميل Outlook "
|
||||
msgstr "معرف عميل Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "سر عميل Outlook "
|
||||
msgstr "سر عميل Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr "مصادقة Outlook OAuth "
|
||||
msgstr "مصادقة Outlook OAuth"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "رمز تحديث Outlook "
|
||||
msgstr "رمز تحديث Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "يرجى تهيئة بيانات اعتماد Otlook الخاصة بك. "
|
||||
msgstr "يرجى تهيئة بيانات اعتماد Otlook الخاصة بك."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "يرجى الاتصال بحساب Outlook الخاص بك قبل استخدامه. "
|
||||
msgstr "يرجى الاتصال بحساب Outlook الخاص بك قبل استخدامه."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"يرجى تعبئة حقل \"اسم المستخدم\" باسم المستخدم من حساب Outlook/Office365الخاص"
|
||||
" بك (عنوان البريد الإلكتروني). يجب أن يكون ذلك نفس الحساب المستخدَم لرمز "
|
||||
"مصادقة Outlook. "
|
||||
"يرجى تعبئة حقل \"اسم المستخدم\" باسم المستخدم من حساب Outlook/Office365الخاص "
|
||||
"بك (عنوان البريد الإلكتروني). يجب أن يكون ذلك نفس الحساب المستخدَم لرمز "
|
||||
"مصادقة Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"يرجى ترك حقل كلمة السر فارغاً لخادم بريد Outlook الإلكتروني %r. لا تتطلب "
|
||||
"عملية المصادقة ذلك "
|
||||
"يرجى ترك حقل كلمة السر فارغاً لخادم بريد Outlook الإلكتروني \"%s\". لا تتطلب "
|
||||
"عملية المصادقة ذلك"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -242,9 +290,8 @@ msgstr "قراءة المزيد"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL مطلوب للخادم %r. "
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL مطلوب للخادم \"%s\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -254,33 +301,40 @@ msgstr "سر"
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "سر تطبيق Outlook "
|
||||
msgstr "سر تطبيق Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "نوع الخادم "
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"قم بضبط بيانات اعتماد الواجهة البرمجية للتطبيق لـ Outlook في الإعدادات "
|
||||
"العامة لربط حساب Outlook. "
|
||||
msgstr "نوع الخادم"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "رابط URL لإنشاء رمز المصادقة من Outlook "
|
||||
msgstr "رابط URL لإنشاء رمز المصادقة من Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "خطأ غير معروف. "
|
||||
msgstr "خطأ غير معروف."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "العودة إلى خادم بريدك"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "تمت تهيئة بيانات اعتماد Outlook"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "قم بضبط بيانات اعتماد الواجهة البرمجية للتطبيق لـ Outlook في الإعدادات "
|
||||
#~ "العامة لربط حساب Outlook."
|
||||
|
|
|
|||
|
|
@ -1,32 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 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-08 19:20+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -36,8 +27,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -45,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -77,27 +84,41 @@ msgstr "Parametrləri Konfiqurasiya edin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Göstəriləcək Ad"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Geri qayıdın"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -115,19 +136,11 @@ msgstr "Gələn Mail Serveri"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -141,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -185,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -209,10 +248,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -223,8 +261,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -242,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Server Tipi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -259,16 +288,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Venelin Stoykov, 2024
|
||||
# Veselina Slavkova, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2025\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-08 19:10+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,8 +27,17 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -47,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -79,27 +84,41 @@ msgstr "Настройки"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Върнете се назад"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -117,19 +136,11 @@ msgstr "Входящ пощенски сървър"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -143,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -187,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -211,22 +248,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Четете повеч"
|
||||
msgstr "Прочетете повече"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -244,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Вид сървър"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -262,6 +289,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
|
|
|||
|
|
@ -1,270 +1,297 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Povežite svoj Outlook račun"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Uredi postavke\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Outlook token važeći\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Outlook token važeći\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Došlo je do greške prilikom preuzimanja pristupnog tokena. %s"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticirati s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "URI za provjeru autentičnosti"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Povežite svoj Outlook račun s procesom OAuth provjere autentičnosti.\n"
|
||||
"Po defaultu, samo korisnik s odgovarajućom e-mail adresom moći će koristiti ovaj server. Da biste proširili njegovu upotrebu, trebali biste postaviti sistemski parametar \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Povežite svoj lični Outlook račun koristeći OAuth.\n"
|
||||
"Bit ćete preusmjereni na stranicu za prijavu na Outlook da biste prihvatili dozvole."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Vratite se na svoj mail server"
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr "ID vaše Outlook aplikacije"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Poslužitelj dolaznih poruka"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Netačna sigurnost veze za Outlook mail server %r. Molimo postavite na \"TLS "
|
||||
"(STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Je li Outlook vjerodajnica konfigurisana"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Samo administrator može povezati Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Outlook pristupni token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Vremenska oznaka isteka Outlook pristupnog tokena"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "Outlook ID klijenta"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook tajna klijenta"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr "Outlook OAuth provjera autentičnosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Outlook token za osvježavanje"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Molimo konfigurišite svoje Outlook vjerodajnice."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Molimo povežite se sa svojim Outlook računom prije upotrebe."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Molimo popunite polje \"Korisničko ime\" sa svojim Outlook/Office365 "
|
||||
"korisničkim imenom (vaša e-mail adresa). Ovo bi trebao biti isti račun kao "
|
||||
"onaj koji se koristi za Outlook OAuthentication token."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Molimo ostavite polje za lozinku prazno za Outlook mail server %r. OAuth "
|
||||
"proces to ne zahtijeva"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Pročitaj više"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL je potreban za server %r."
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Tajna vaše Outlook aplikacije"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tip poslužitelja"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Postavite svoje Outlook API vjerodajnice u općim postavkama da biste "
|
||||
"povezali Outlook račun."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "URL za generiranje autorizacijskog koda iz Outlooka"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr "Nepoznata greška."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,40 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jonatan Gk, 2022
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Eric Antones <eantones@users.noreply.github.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
# martioodo hola, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: martioodo hola, 2023\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-08 21:59+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connecta el teu compte d'Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -44,30 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connectar el teu compte d'Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('servertype', '!=', 'outlook'), ('microsoftoutlookrefreshtoken', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Testimoni de l'Outlook vàlid\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token d'Outlook vàlid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtpauthentication', '!=', 'outlook'), ('microsoftoutlookrefreshtoken', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Testimoni de l'Outlook vàlid\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token d'Outlook vàlid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "S'ha produït un error en recuperar el token d'accés.%s"
|
||||
|
||||
|
|
@ -86,36 +90,53 @@ msgstr "URI d'autenticació"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Connecteu el vostre compte Outlook amb el procés d'autenticació OAuth. \n"
|
||||
"Per defecte, només un usuari amb una adreça de correu electrònic coincident podrà utilitzar aquest servidor. Per estendre el seu ús, hauríeu d'establir un paràmetre de sistema «mail.default.from»."
|
||||
"Per defecte, només un usuari amb una adreça de correu electrònic coincident "
|
||||
"podrà utilitzar aquest servidor. Per estendre el seu ús, hauríeu d'establir "
|
||||
"un paràmetre de sistema «mail.default.from»."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Connecteu el vostre compte personal d'Outlook amb OAuth. \n"
|
||||
"Se us redirigirà a la pàgina d'inici de sessió de l'Outlook per acceptar els permisos."
|
||||
"Se us redirigirà a la pàgina d'inici de sessió de l'Outlook per acceptar els "
|
||||
"permisos."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Torna al teu servidor de correu"
|
||||
msgid "Go back"
|
||||
msgstr "Tornar enrere"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -133,20 +154,10 @@ msgstr "Servidor de Correu entrant"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Seguretat de connexió incorrecta per al servidor de correu Outlook %r. "
|
||||
"Establiu-ho a \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Està configurat la Credencial d'Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -161,10 +172,33 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Només l'administrador pot enllaçar un servidor de correu Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -205,41 +239,41 @@ msgstr "Token de refresc de l'Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configureu les vostres credencials de l'Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Connecteu amb el vostre compte d'Outlook abans d'utilitzar-lo."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Siusplau ompliu el camp \"Nom d'usuari\" amb el vostre Outlook/Office365 nom"
|
||||
" d'usuari (La vostra adreça electrònica del vostre correu electrònic). "
|
||||
"Aquest hauria de ser el mateix compte utilitzat en el vostre Outlook en la "
|
||||
"fitxa d'autenticació."
|
||||
"Siusplau ompliu el camp \"Nom d'usuari\" amb el vostre Outlook/Office365 nom "
|
||||
"d'usuari (La vostra adreça electrònica del vostre correu electrònic). Aquest "
|
||||
"hauria de ser el mateix compte utilitzat en el vostre Outlook en la fitxa "
|
||||
"d'autenticació."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Deixeu el camp de contrasenya buit per al servidor de correu de l'Outlook "
|
||||
"%r. El procés OAuth no el requereix"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -249,9 +283,8 @@ msgstr "Llegeix més"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Es requereix SSL per al servidor %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -268,16 +301,6 @@ msgstr "Secret de l'aplicació Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Tipus de servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configureu les vostres credencials de l'API d'Outlook a la configuració "
|
||||
"general per a enllaçar un compte d'Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -288,6 +311,23 @@ msgstr "L'URL per a generar el codi d'autorització des de l'Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Error desconegut."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Torna al teu servidor de correu"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Està configurat la Credencial d'Outlook"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configureu les vostres credencials de l'API d'Outlook a la configuració "
|
||||
#~ "general per a enllaçar un compte d'Outlook."
|
||||
|
|
|
|||
|
|
@ -1,37 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jakub Smolka, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\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-11-08 21:59+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Připojte svůj účet Outlook"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -41,30 +28,40 @@ msgstr "<i class=\"fa fa-cog\" title=\"Upravit nastavení\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Platný token Outlooku\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Platný token Outlooku\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Při načítání přístupového tokenu došlo k chybě. %s"
|
||||
|
||||
|
|
@ -83,36 +80,53 @@ msgstr "Ověřovací URI"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
msgstr "Konfigurační nastavení"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Propojte svůj účet Outlook s procesem ověřování OAuth.\n"
|
||||
"Ve výchozím nastavení bude moci tento server používat pouze uživatel s odpovídající e-mailovou adresou. Chcete-li rozšířit jeho použití, měli byste nastavit systémový parametr \"mail.default.from\"."
|
||||
"Ve výchozím nastavení bude moci tento server používat pouze uživatel s "
|
||||
"odpovídající e-mailovou adresou. Chcete-li rozšířit jeho použití, měli byste "
|
||||
"nastavit systémový parametr \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Připojte svůj osobní účet Outlook pomocí protokolu OAuth.\n"
|
||||
"Budete přesměrováni na přihlašovací stránku aplikace Outlook, kde přijmete oprávnění."
|
||||
"Budete přesměrováni na přihlašovací stránku aplikace Outlook, kde přijmete "
|
||||
"oprávnění."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Vraťte se na svůj poštovní server"
|
||||
msgid "Go back"
|
||||
msgstr "Vrátit se"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -125,30 +139,20 @@ msgstr "ID vaší Outlook aplikace"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server příchozí pošty"
|
||||
msgstr "Příchozí mailový server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Nesprávné zabezpečení připojení pro poštovní server Outlook %r. Nastavte jej"
|
||||
" na \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Jsou pověření Outlooku nakonfigurováno"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mail Server"
|
||||
msgstr "Emailový server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -158,10 +162,33 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Pouze administrátor může propojit e-mailový server Outlooku."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -202,40 +229,40 @@ msgstr "Obnovovací token Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Nakonfigurujte prosím své Outlook pověření."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Před použitím se připojte ke svému účtu Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Vyplňte prosím pole „Uživatelské jméno“ svým uživatelským jménem "
|
||||
"Outlooku/Office365 (vaší e-mailovou adresou). Měl by to být stejný účet jako"
|
||||
" ten, který se používá pro token OAuthentication Outlooku."
|
||||
"Vyplňte prosím pole „Uživatelské jméno“ svým uživatelským jménem Outlooku/"
|
||||
"Office365 (vaší e-mailovou adresou). Měl by to být stejný účet jako ten, "
|
||||
"který se používá pro token OAuthentication Outlooku."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Ponechte pole pro heslo prázdné pro poštovní server Outlook %r. Proces OAuth"
|
||||
" to nevyžaduje"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -245,14 +272,13 @@ msgstr "Přečtěte si více"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL je vyžadován pro server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajný"
|
||||
msgstr "Tajný klíč"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -264,16 +290,6 @@ msgstr "Tajný klíč vaší Outlook aplikace"
|
|||
msgid "Server Type"
|
||||
msgstr "Druh serveru"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Chcete-li propojit účet Outlook, nastavte své přihlašovací údaje k rozhraní "
|
||||
"Outlook API v obecných nastaveních."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -284,6 +300,23 @@ msgstr "Adresa URL pro generování autorizačního kódu od společnosti Outloo
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Neznámá chyba."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Vraťte se na svůj poštovní server"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Jsou pověření Outlooku nakonfigurováno"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Chcete-li propojit účet Outlook, nastavte své přihlašovací údaje k "
|
||||
#~ "rozhraní Outlook API v obecných nastaveních."
|
||||
|
|
|
|||
|
|
@ -1,38 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
# Sammi Iversen <sammi@vkdata.dk>, 2025
|
||||
# Kira Petersen, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-08 19:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Forbind din Outlook konto"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -42,8 +28,19 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Tilslut din Outlook-konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -51,15 +48,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -78,32 +82,46 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
msgstr "Konfigurationsindstillinger"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Gå tilbage til din mailserver"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Gå tilbage"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -121,19 +139,11 @@ msgstr "Indgående mail server"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -147,10 +157,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -191,21 +224,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Tilslut venligst din Outlook-konto, før du bruger den."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Indtast venligst en gyldig e-mailadresse."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -215,10 +251,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -229,8 +264,7 @@ msgstr "Læs mere"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -248,16 +282,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Servertype"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Konfigurer dine Outlook API-legitimationsoplysninger i de generelle "
|
||||
"indstillinger for at linke en Outlook-konto."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -268,6 +292,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Gå tilbage til din mailserver"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Konfigurer dine Outlook API-legitimationsoplysninger i de generelle "
|
||||
#~ "indstillinger for at linke en Outlook-konto."
|
||||
|
|
|
|||
|
|
@ -1,34 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-28 09:09+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Verbinden Sie Ihr Outlook-Konto"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,30 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Verbinden Sie Ihr Outlook-Konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook-Token Gültig\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook-Token Gültig\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Beim Abrufen des Zugriffstokens ist ein Fehler aufgetreten. %s"
|
||||
|
||||
|
|
@ -85,31 +95,48 @@ msgstr "Konfigurationseinstellungen"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Verbinden Sie Ihr Outlook-Konto mit dem OAuth-Authentifizierungsverfahren. \n"
|
||||
"Standardmäßig kann nur ein Benutzer mit einer passenden E-Mail-Adresse diesen Server verwenden. Um die Nutzung zu erweitern, sollten Sie einen Systemparameter „mail.default.from“ festlegen."
|
||||
"Standardmäßig kann nur ein Benutzer mit einer passenden E-Mail-Adresse "
|
||||
"diesen Server verwenden. Um die Nutzung zu erweitern, sollten Sie einen "
|
||||
"Systemparameter „mail.default.from“ festlegen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Verbinden Sie Ihr persönliches Outlook-Konto über OAuth. \n"
|
||||
"Sie werden zur Outlook-Anmeldeseite weitergeleitet, um die Berechtigungen zu akzeptieren."
|
||||
"Sie werden zur Outlook-Anmeldeseite weitergeleitet, um die Berechtigungen zu "
|
||||
"akzeptieren."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Gehen Sie zurück in Ihren E-Mail-Server"
|
||||
msgid "Go back"
|
||||
msgstr "Zurückgehen"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -127,20 +154,12 @@ msgstr "Posteingangsserver"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Falsche Verbindungssicherheit für Outlook-Mailserver %r. Bitte setzen Sie "
|
||||
"ihn auf „TLS (STARTTLS)“."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Sind die Outlook-Anmeldeinformationen konfiguriert"
|
||||
"Falsche Verbindungssicherheit für Outlook-Mailserver „%s“. Bitte setzen Sie "
|
||||
"sie auf „TLS (STARTTLS)“."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -155,10 +174,38 @@ msgstr "Microsoft-Outlook-Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Nur der Administrator kann einen Outlook-Mailserver verbinden."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
"Hoppla! Es ist uns leider nicht möglich, Sie zu authentifizieren. Versuchen "
|
||||
"Sie es später erneut."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Hoppla! Beachten Sie, dass Sie eine Berechtigung zum Senden von %"
|
||||
"(email_login)s erstellen, Ihre Adresse jedoch %(email_server)s lautet. "
|
||||
"Stellen Sie sicher, dass Ihre Adressen übereinstimmen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Art des Postausgangsservers"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -199,40 +246,41 @@ msgstr "Outlook-Aktualisierungstoken"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Bitte konfigurieren Sie Ihre Outlook-Anmeldedaten."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Bitte verbinden Sie Ihr Outlook-Konto, bevor Sie es verwenden."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Geben Sie eine gültige E-Mail-Adresse ein."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Bitte geben Sie in das Feld „Benutzername“ Ihren "
|
||||
"Outlook/Office365-Benutzernamen (Ihre E-Mail-Adresse) ein. Dies sollte "
|
||||
"dasselbe Konto sein, das auch für das Outlook-OAuthentication-Token "
|
||||
"verwendet wird."
|
||||
"Bitte geben Sie in das Feld „Benutzername“ Ihren Outlook/Office365-"
|
||||
"Benutzernamen (Ihre E-Mail-Adresse) ein. Dies sollte dasselbe Konto sein, "
|
||||
"das auch für das Outlook-OAuthentication-Token verwendet wird."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Bitte lassen Sie das Passwortfeld für den Outlook-Mailserver %r leer. Der "
|
||||
"Bitte lassen Sie das Passwortfeld für den Outlook-Mailserver „%s“ leer. Der "
|
||||
"OAuth-Prozess benötigt es nicht"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -243,9 +291,8 @@ msgstr "Mehr lesen"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL ist für den Server %r erforderlich."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL ist für den Server „%s“ erforderlich."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -262,16 +309,6 @@ msgstr "Geheimnis Ihrer Outlook-App"
|
|||
msgid "Server Type"
|
||||
msgstr "Servertyp"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Richten Sie Ihre Outlook-API-Anmeldedaten in den allgemeinen Einstellungen "
|
||||
"ein, um ein Outlook-Konto zu verknüpfen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -282,6 +319,35 @@ msgstr "Die URL zum Generieren des Autorisierungscodes aus Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Unbekannter Fehler."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#~ msgid "An error occurred: %s."
|
||||
#~ msgstr "Es ist ein Fehler aufgetreten: %s."
|
||||
|
||||
#~ msgid "Outlook is not configured on IAP."
|
||||
#~ msgstr "Outlook ist auf IAP nicht konfiguriert."
|
||||
|
||||
#~ msgid "Please configure your outlook credentials."
|
||||
#~ msgstr "Bitte konfigurieren Sie Ihre Outlook-Anmeldedaten."
|
||||
|
||||
#~ msgid "You don't have an active subscription."
|
||||
#~ msgstr "Sie verfügen derzeit über kein aktives Abonnement."
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Gehen Sie zurück in Ihren E-Mail-Server"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Sind die Outlook-Anmeldeinformationen konfiguriert"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Richten Sie Ihre Outlook-API-Anmeldedaten in den allgemeinen "
|
||||
#~ "Einstellungen ein, um ein Outlook-Konto zu verknüpfen."
|
||||
|
|
|
|||
|
|
@ -1,27 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-08 18:01+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/el/>\n"
|
||||
"Language: el\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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -31,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -40,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Σε Ισχύ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -67,35 +80,49 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
msgstr "Ρυθμίσεις διαμόρφωσης"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -105,24 +132,16 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
msgstr "Διακομιστής Εισερχόμενης Αλληλογραφίας"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -136,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -180,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -204,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -218,8 +262,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -235,15 +278,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
msgstr "Τύπος Διακομιστή"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -254,16 +289,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
|
@ -1,35 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-12-31 12:58+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conecte su cuenta de Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,30 +30,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Conectar su cuenta de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ocurrió un error al obtener el token de acceso. %s"
|
||||
|
||||
|
|
@ -86,31 +97,48 @@ msgstr "Ajustes de configuración"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Conecte su cuenta de Outlook con el proceso de autenticación de OAuth. \n"
|
||||
"Por defecto, sólo un usuario con una dirección de correo electrónico coincidente podrá utilizar este servidor. Para ampliar su uso, deberá establecer un parámetro de sistema \"mail.default.from\"."
|
||||
"Por defecto, sólo un usuario con una dirección de correo electrónico "
|
||||
"coincidente podrá utilizar este servidor. Para ampliar su uso, deberá "
|
||||
"establecer un parámetro de sistema \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conecte su cuenta personal de Outlook mediante OAuth. \n"
|
||||
"Se le redireccionará a la página de inicio de sesión de Outlook para aceptar los permisos."
|
||||
"Se le redireccionará a la página de inicio de sesión de Outlook para aceptar "
|
||||
"los permisos."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Volver a su servidor de correo"
|
||||
msgid "Go back"
|
||||
msgstr "Atrás"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -128,20 +156,12 @@ msgstr "Servidor de correo de entrada"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Seguridad de conexión incorrecta para el servidor de correo de Outlook %r. "
|
||||
"Establézcalo a \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "¿Se configuraron las credenciales de Outlook?"
|
||||
"La seguridad de conexión del servidor de correo de Outlook %s es incorrecta, "
|
||||
"establézcala a \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -156,10 +176,35 @@ msgstr "Mixin de Microsoft Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Solo el administrador puede vincular un servidor de correo de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Vaya, no hemos podido autentificarte. Vuelve a intentarlo más tarde."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Solo el administrador puede vincular un servidor de correo de Outlook."
|
||||
"Vaya, estás creando una autorización para enviar desde %(email_login)s, pero "
|
||||
"tu dirección es %(email_server)s. ¡Asegúrate de que tus direcciones "
|
||||
"coincidan!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipo de servidor de correo saliente"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
|
|
@ -201,21 +246,24 @@ msgstr "Token de actualización de Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configure sus credenciales de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Conecte con su cuenta de Outlook antes de usarla."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Proporcione una dirección de correo electrónico válida."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -228,13 +276,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Deje el campo de contraseña en blanco para el servidor de correo de Outlook "
|
||||
"%r. El proceso de OAuth no lo requiere."
|
||||
"Deje el campo de contraseña vacío en el servidor de correo de Outlook “%s”. "
|
||||
"El proceso de OAuth no la requiere."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -244,9 +291,8 @@ msgstr "Leer más"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Se requiere SSL para el servidor %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "Se requiere SSL para el servidor “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -263,16 +309,6 @@ msgstr "Secreto de su aplicación de Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Tipo de servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configure sus credenciales API de Outlook en los ajustes generales para "
|
||||
"vincular una cuenta de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -283,6 +319,23 @@ msgstr "La URL para generar el código de autorización de Outlook."
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Error desconocido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Volver a su servidor de correo"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "¿Se configuraron las credenciales de Outlook?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configure sus credenciales API de Outlook en los ajustes generales para "
|
||||
#~ "vincular una cuenta de Outlook."
|
||||
|
|
|
|||
|
|
@ -1,36 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Lucia Pacheco, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\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-10-30 17:05+0000\n"
|
||||
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conecte su cuenta de Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,30 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Editar ajustes\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Conecte su cuenta de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ocurrió un error al obtener el token de acceso. %s"
|
||||
|
||||
|
|
@ -87,31 +95,48 @@ msgstr "Ajustes de configuración"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Conecte su cuenta de Outlook con el proceso de autenticación de OAuth. \n"
|
||||
"De forma predeterminada, solo un usuario con una dirección de correo electrónico que coincide podrá usar este servidor. Para extender su uso, debe establecer un parámetro de sistema \"mail.default.from\"."
|
||||
"De forma predeterminada, solo un usuario con una dirección de correo "
|
||||
"electrónico que coincide podrá usar este servidor. Para extender su uso, "
|
||||
"debe establecer un parámetro de sistema \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conecte su cuenta personal de Outlook mediante OAuth. \n"
|
||||
"Se le redirigirá a la página de inicio de sesión de Outlook para aceptar los permisos."
|
||||
"Se le redirigirá a la página de inicio de sesión de Outlook para aceptar los "
|
||||
"permisos."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Volver a su servidor de correo"
|
||||
msgid "Go back"
|
||||
msgstr "Regresar"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -129,20 +154,12 @@ msgstr "Servidor de correos entrantes"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"La seguridad de conexión para el servidor de correo de Outlook %r no es "
|
||||
"correcta. Establézcala a \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "¿Se configuraron las credenciales de Outlook?"
|
||||
"La seguridad de conexión del servidor de correo de Outlook %s es incorrecta, "
|
||||
"establézcala a \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -157,10 +174,34 @@ msgstr "Mixin de Microsoft Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Solo el administrador puede vincular un servidor de correo de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "¡Uy! No pudimos autenticarte. Inténtalo de nuevo más tarde."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Solo el administrador puede vincular un servidor de correo de Outlook."
|
||||
"Uy, estás creando una autorización para enviar desde %(email_login)s, pero "
|
||||
"tu dirección es %(email_server)s. ¡Asegúrate de que coincidan!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipo de servidor para correos salientes"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
|
|
@ -202,40 +243,42 @@ msgstr "Token de actualización de Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configure sus credenciales de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Conecte con su cuenta de Outlook antes de usarla."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Proporciona una dirección de correo válida."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Complete el campo \"Nombre de usuario\" con su cuenta de Outlook u Office "
|
||||
"365 (su correo electrónico). Use la misma cuenta que se usó para el Token de"
|
||||
" Outlook OAuthentication."
|
||||
"365 (su correo electrónico). Use la misma cuenta que usó para el token de "
|
||||
"Outlook OAuthentication."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Deje el campo de contraseña en blanco para el servidor de correo de Outlook "
|
||||
"%r. El proceso de OAuth no lo requiere."
|
||||
"Deje el campo de contraseña del servidor de correo de Outlook %s vacío, el "
|
||||
"proceso de OAuth no la requiere."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -245,9 +288,8 @@ msgstr "Más información"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Se requiere SSL para el servidor %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "Se requiere SSL para el servidor %s."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -264,16 +306,6 @@ msgstr "Secreto de su aplicación de Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Tipo de servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configure sus credenciales API de Outlook en los ajustes generales para "
|
||||
"vincular una cuenta de Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -284,6 +316,35 @@ msgstr "La URL para generar el código de autorización de Outlook."
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Error desconocido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#~ msgid "An error occurred: %s."
|
||||
#~ msgstr "Ocurrió un error: %s."
|
||||
|
||||
#~ msgid "Outlook is not configured on IAP."
|
||||
#~ msgstr "Outlook no está configurado en IAP."
|
||||
|
||||
#~ msgid "Please configure your outlook credentials."
|
||||
#~ msgstr "Configura tus credenciales de Outlook."
|
||||
|
||||
#~ msgid "You don't have an active subscription."
|
||||
#~ msgstr "No tienes una suscripción activa."
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Volver a su servidor de correo"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "¿Se configuraron las credenciales de Outlook?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configure sus credenciales API de Outlook en los ajustes generales para "
|
||||
#~ "vincular una cuenta de Outlook."
|
||||
|
|
@ -1,36 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# 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: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Anna, 2024\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-11-08 18:02+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Ühenda Outlook'i konto"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,37 +27,55 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook'i token on kehtiv\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlooki token on kehtiv\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook'i token on kehtiv\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlooki token on kehtiv\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivne"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Tuvasta "
|
||||
msgstr "Tuvasta"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -87,27 +92,41 @@ msgstr "Seadistused"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Mine tagasi oma meiliserverisse"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuvatav nimi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Mine tagasi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -120,24 +139,16 @@ msgstr "Sinu Outlooki rakenduse ID"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Saabuvate kirjade server"
|
||||
msgstr "Sissetulevate kirjade server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -151,10 +162,33 @@ msgstr "Microsoft Outlooki mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -195,21 +229,24 @@ msgstr "Outlooki uuendamise võti"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Palun seadista oma Outlooki sisselogimisandmed."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -219,10 +256,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -233,14 +269,13 @@ msgstr "Loe rohkem"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Saladus"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -252,14 +287,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Serveri tüüp"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -270,6 +297,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Tundmatu viga."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-08 19:09+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,8 +27,17 @@ msgstr "<i class=\"fa fa-cog\" title=\"ویرایش تنظیمات\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -47,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "فعال"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -79,27 +84,41 @@ msgstr "تنظیمات پیکربندی"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "برگرد"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
|
@ -117,19 +136,11 @@ msgstr "سرور ایمیل ورودی"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -143,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "چشمانداز"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -187,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -211,10 +248,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -225,8 +261,7 @@ msgstr "بیشتر بخوانید"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -244,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "نوع سرور"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -259,18 +286,13 @@ msgstr ""
|
|||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "ایراد ناشناخته."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Johanna Valkonen <miujohanna@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-12-20 09:49+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Yhdistä Outlook-tilisi"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -41,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Muokkaa asetuksia\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Yhdistä Outlook-tilisi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook pääsytunniste on oimassa\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook pääsytunniste on voimassa\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook pääsytunniste on voimassa\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Pääsytunnisteen noutamisessa tapahtui virhe. %s"
|
||||
|
||||
|
|
@ -88,18 +96,20 @@ msgstr "Asetukset"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Yhdistä Outlook-tilisi OAuth-todennusprosessilla. \n"
|
||||
"Oletusarvoisesti vain käyttäjä, jolla on vastaava sähköpostiosoite, voi käyttää tätä palvelinta. Voit laajentaa sen käyttöä asettamalla järjestelmäparametrin \"mail.default.from\"."
|
||||
"Oletusarvoisesti vain käyttäjä, jolla on vastaava sähköpostiosoite, voi "
|
||||
"käyttää tätä palvelinta. Voit laajentaa sen käyttöä asettamalla "
|
||||
"järjestelmäparametrin \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -108,11 +118,25 @@ msgstr ""
|
|||
"Sinut ohjataan Outlookin kirjautumissivulle hyväksymään oikeudet."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Palaa sähköpostipalvelimelle"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Palaa takaisin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -130,20 +154,12 @@ msgstr "Saapuvan sähköpostin palvelin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Outlookin sähköpostipalvelimen virheellinen yhteyden tietoturva-asetus %r. "
|
||||
"Aseta arvoksi \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Onko Outlookin tunnukset määritetty"
|
||||
"Virheellinen yhteyden tietoturvatyyppi Outlookin sähköpostipalvelimelle "
|
||||
"\"%s\". Aseta sen arvoksi \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -158,10 +174,36 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Vain järjestelmänvalvoja voi yhdistää Outlookin sähköpostipalvelimen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Hups, emme pystyneet tunnistamaan sinua. Yritä myöhemmin uudelleen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Hups, olet luomassa valtuutusta lähettää viestejä osoitteesta %"
|
||||
"(email_login)s, mutta osoitteesi on %(email_server)s. Varmista, että "
|
||||
"osoitteesi ovat samat!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Lähtevän postin palvelintyyppi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -202,21 +244,24 @@ msgstr "Outlook virkistä pääsytunniste"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Määritä Outlook-tunnukset."
|
||||
msgstr "Määritä Outlook-kirjautumistunnukset."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Muodosta yhteys Outlook-tiliisi ennen sen käyttöä."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Syötä kelvollinen sähköposti."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -229,12 +274,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Jätä salasanakenttä tyhjäksi Outlookin sähköpostipalvelimelle %r. OAuth-"
|
||||
"Jätä salasanakenttä tyhjäksi Outlookin sähköpostipalvelimelle \"%s\". OAuth-"
|
||||
"prosessi ei vaadi sitä"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -245,9 +289,8 @@ msgstr "Lue lisää"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Palvelimelta vaaditaan SSL %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL vaaditaan palvelimelle \"%s\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -264,16 +307,6 @@ msgstr "Outlook-sovelluksen salaisuus"
|
|||
msgid "Server Type"
|
||||
msgstr "Palvelimen tyyppi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Määritä Outlookin API-tunnukset yleisissä asetuksissa Outlook-tilin "
|
||||
"yhdistämiseksi."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -284,6 +317,23 @@ msgstr "URL-osoite, jonka avulla valtuutuskoodi luodaan Outlookista"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Tuntematon virhe."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Palaa sähköpostipalvelimelle"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Onko Outlookin kirjautumistunnukset määritetty"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Määritä Outlookin API-tunnukset yleisissä asetuksissa Outlook-tilin "
|
||||
#~ "yhdistämiseksi."
|
||||
|
|
|
|||
|
|
@ -1,36 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Manon Rondou (ronm)" <ronm@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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-18 13:49+0000\n"
|
||||
"Last-Translator: \"Manon Rondou (ronm)\" <ronm@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connecter votre compte Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Modifier les paramètres\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connecter votre compte Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Jeton Outlook valide\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Jeton Outlook valide\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Une erreur s'est produite lors de la récupération du jeton d'accès.%s"
|
||||
|
||||
|
|
@ -87,31 +96,49 @@ msgstr "Paramètres de configuration"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Connectez votre compte Outlook grâce au processus d'authentification OAuth. \n"
|
||||
"Par défaut, seul un utilisateur avec une adresse e-mail correspondante pourra utiliser ce serveur. Pour étendre son utilisation, vous devriez définir un paramètre système \"mail.default.from\"."
|
||||
"Connectez votre compte Outlook grâce au processus d'authentification "
|
||||
"OAuth. \n"
|
||||
"Par défaut, seul un utilisateur avec une adresse e-mail correspondante "
|
||||
"pourra utiliser ce serveur. Pour étendre son utilisation, vous devriez "
|
||||
"définir un paramètre système \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Connectez votre compte Outlook personnel en utilisant OAuth. \n"
|
||||
"Vous serez redirigé vers la page de connexion Outlook pour accepter les permissions."
|
||||
"Vous serez redirigé vers la page de connexion Outlook pour accepter les "
|
||||
"permissions."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Retournez à votre serveur de messagerie"
|
||||
msgid "Go back"
|
||||
msgstr "Retour"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -129,20 +156,12 @@ msgstr "Serveur de messagerie entrant"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Sécurité de connexion au serveur de messagerie Outlook %r incorrecte. "
|
||||
"Veuillez la définir sur \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Les informations d'identification Outlook sont-elles configurées ?"
|
||||
"Sécurité de connexion au serveur de messagerie Outlook “%s”. Veuillez la "
|
||||
"définir sur \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -157,10 +176,37 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Seul l'administrateur peut lier un serveur de messagerie Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
"Oups, nous n’avons pas pu vous authentifier. Veuillez réessayer plus tard."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Oups, vous créez une autorisation pour envoyer depuis %(email_login)s mais "
|
||||
"votre adresse est %(email_server)s. Assurez-vous que vos adresses "
|
||||
"correspondent !"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Type de serveur de messagerie sortant"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -183,7 +229,7 @@ msgstr "ID client outlook"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook Secret Client"
|
||||
msgstr "Outlook Secret client"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -201,22 +247,24 @@ msgstr "Actualiser le jeton Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Veuillez configurer vos données d'authentification Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
"Veuillez vous connecter avec votre compte Outlook avant de l'utiliser."
|
||||
msgstr "Veuillez vous connecter avec votre compte Outlook avant de l'utiliser."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Veuillez saisir une adresse e-mail valide."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -229,13 +277,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Veuillez laisser le champ Mot de passe vide pour le serveur de messagerie "
|
||||
"Outlook %r. Le processus OAuth ne l'exige pas"
|
||||
"Veuillez laisser le champ mot de passe vide pour le serveur de messagerie "
|
||||
"Outlook “%s”. Le processus OAuth ne l'exige pas"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -245,9 +292,8 @@ msgstr "Plus d'info"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL est obligatoire pour le serveur %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL est obligatoire pour le serveur “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -264,16 +310,6 @@ msgstr "Secret de votre app Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Type de serveur"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configurez vos Identifiants de l'API Outlook dans les paramètres généraux "
|
||||
"pour lier un compte Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -284,6 +320,23 @@ msgstr "L'URL pour générer le code d'autorisation à partir d'Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Erreur inconnue."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Retournez à votre serveur de messagerie"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Les informations d'identification Outlook sont-elles configurées ?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configurez vos Identifiants de l'API Outlook dans les paramètres généraux "
|
||||
#~ "pour lier un compte Outlook."
|
||||
|
|
|
|||
|
|
@ -1,273 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# or balmas, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-08 17:52+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -49,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "פעיל"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -81,27 +85,41 @@ msgstr "הגדר הגדרות"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "חזור"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
|
@ -119,19 +137,11 @@ msgstr "שרת דואר נכנס"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -145,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "אאוטלוק"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -189,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -213,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -227,8 +262,7 @@ msgstr "קרא עוד"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -246,14 +280,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "סוג השרת"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -264,6 +290,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\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-18 13:49+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -35,8 +27,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -44,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "ऐक्टिव"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -76,27 +84,41 @@ msgstr "कॉन्फ़िगरेशन सेटिंग"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "वापस जाएं"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
|
@ -114,23 +136,15 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
msgstr "मेल सर्वर"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -140,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -161,12 +198,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
msgstr "Outlook क्लाइंट आईडी"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
msgstr "Outlook क्लाइंट सीक्रेट"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -184,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -208,28 +248,26 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
msgstr "ज़्यादा जानें"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
msgstr "सीक्रेट"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -241,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -259,6 +289,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matej Mijoč, 2022
|
||||
# Servisi RAM d.o.o. <support@servisiram.hr>, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Servisi RAM d.o.o. <support@servisiram.hr>, 2024\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-08 21:59+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -47,22 +46,29 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticirati s "
|
||||
msgstr "Autenticirati s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -79,27 +85,41 @@ msgstr "Postavke"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Natrag"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -117,19 +137,11 @@ msgstr "Poslužitelj dolaznih poruka"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -143,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -187,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Molimo unesite važeću adresu e-pošte."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -211,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -225,14 +262,13 @@ msgstr "Pročitaj više"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
msgstr "Tajna"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -244,14 +280,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Tip poslužitelja"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -261,16 +289,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Dombos, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tamás Dombos, 2023\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-08 19:18+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -48,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -75,35 +80,49 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Menjen vissza"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -118,19 +137,11 @@ msgstr "Bejövő levelek kiszolgálója"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -144,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -188,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -212,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -226,8 +262,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -245,14 +280,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Szervertípus"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -262,16 +289,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
|
|
|||
|
|
@ -1,269 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,33 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Abe Manyo (abem)" <abem@odoo.com>, 2025, 2026.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: 2026-01-05 11:11+0000\n"
|
||||
"Last-Translator: \"Abe Manyo (abem)\" <abem@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -37,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Pengaturan\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Hubungkan akun Outlook Anda"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook Valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook Valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Error terjadi saat mengambil token akses. %s"
|
||||
|
||||
|
|
@ -84,18 +96,20 @@ msgstr "Pengaturan Konfigurasi"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Hubungkan akun Outlook Anda dengan proses Autentikasi OAuth.\n"
|
||||
"Secara default, hanya user dengan alamat email yang cocok akan dapat menggunakan server ini. Untuk memperpanjang penggunaannya, Anda harus menetapkan parameter sistem \"mail.default.from\". "
|
||||
"Secara default, hanya user dengan alamat email yang cocok akan dapat "
|
||||
"menggunakan server ini. Untuk memperpanjang penggunaannya, Anda harus "
|
||||
"menetapkan parameter sistem \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -104,11 +118,25 @@ msgstr ""
|
|||
"Anda akan dialihkan ulang ke halaman login Outlook untuk menerima izinnya."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Kembali ke server email Anda"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Kembali"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -126,20 +154,12 @@ msgstr "Server masuk"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Keamanan Koneksi Salah untuk server email Outlook %r. Mohon tetapkan menjadi"
|
||||
" \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Apakah Kredensial Outlook Dikonfigurasi"
|
||||
"Keamanan Koneksi Salah untuk server email Outlook “%s”. Silakan tetapkan "
|
||||
"menjadi \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -154,10 +174,35 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Hanya administrator yang dapat link server email Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Oops, kami tidak dapat mengautentikasi Anda. Silakan coba lagi nanti."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Oops, Anda membuat otorisasi untuk mengirim dari %(email_login)s tapi alamat "
|
||||
"Anda adalah %(email_server)s. Pastikan alamatnya cocok!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipe Server Email Keluar"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -198,21 +243,24 @@ msgstr "Token Refresh Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Mohon konfigurasikan kredensial Outlook Anda."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Mohon masuk dengan akun Outlook Anda sebelum menggunakannya."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Silakan masukkan alamat email valid."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -225,12 +273,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Mohon biarkan kosong kolom password untuk server email Outlook %r. Proses "
|
||||
"Mohon biarkan kosong field password untuk server email Outlook “%s”. Proses "
|
||||
"OAuth tidak membutuhkannya"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -241,9 +288,8 @@ msgstr "Lihat Lebih"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL dibutuhkan untuk server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL diperlukan untuk server “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -260,16 +306,6 @@ msgstr "Secret dari app Outlook Anda"
|
|||
msgid "Server Type"
|
||||
msgstr "Server Type"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Setup kredensial API Outlook Anda di pengaturan umum untuk menghubungkan ke "
|
||||
"akun Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -280,6 +316,23 @@ msgstr "URL untuk membuat kode otorisasi dari Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Error tidak diketahui."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Kembali ke server email Anda"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Apakah Kredensial Outlook Dikonfigurasi"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Setup kredensial API Outlook Anda di pengaturan umum untuk menghubungkan "
|
||||
#~ "ke akun Outlook."
|
||||
|
|
|
|||
|
|
@ -1,273 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Leyndarmál"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,35 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marianna Ciofani (cima)" <cima@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 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-10-16 07:03+0000\n"
|
||||
"Last-Translator: \"Marianna Ciofani (cima)\" <cima@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connetti account Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,33 +28,52 @@ msgstr "<i class=\"fa fa-cog\" title=\"Modifica impostazioni\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connetti il tuo account Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook valido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook valido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
"Si è verificato un errore durante il recupero del token di accesso. %s"
|
||||
msgstr "Si è verificato un errore durante il recupero del token di accesso. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
|
|
@ -87,31 +95,49 @@ msgstr "Impostazioni di configurazione"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Collega il tuo account Outlook tramite il processo di autenticazione OAuth. \n"
|
||||
"Per impostazione predefinita, solo un utente con un indirizzo e-mail adeguato potrà utilizzare il server. Per estenderne l'utilizzo, puoi configurare un parametro di sistema di tipo \"mail.default.from\"."
|
||||
"Collega il tuo account Outlook tramite il processo di autenticazione "
|
||||
"OAuth. \n"
|
||||
"Per impostazione predefinita, solo un utente con un indirizzo e-mail "
|
||||
"adeguato potrà utilizzare il server. Per estenderne l'utilizzo, puoi "
|
||||
"configurare un parametro di sistema di tipo \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Collega il tuo account personale Outlook utilizzando OAuth.\n"
|
||||
"Verrai reindirizzato alla pagina di accesso di Outlook per accettare i permessi."
|
||||
"Verrai reindirizzato alla pagina di accesso di Outlook per accettare i "
|
||||
"permessi."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Ritorna al server di posta"
|
||||
msgid "Go back"
|
||||
msgstr "Indietro"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -129,20 +155,12 @@ msgstr "Server posta in arrivo"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Sicurezza connessione non corretta per il server di posta Outlook %r, "
|
||||
"impostarla su \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Sono configurate le credenziali Outlook"
|
||||
"Sicurezza connessione non corretta per il server di posta Outlook \"%s\". "
|
||||
"Impostarla su \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -157,10 +175,36 @@ msgstr "Mixin Outlook di Microsoft"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Solo un amministratore può collegare un server di posta Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Ops, non è stato possibile autenticarti. Prova di nuovo più tardi."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Ops, stai creando un'autorizzazione da inviare dall'indirizzo %"
|
||||
"(email_login)s ma il tuo indirizzo è %(email_server)s. Assicurati che gli "
|
||||
"indirizzi corrispondano!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipo server e-mail in uscita"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -201,21 +245,24 @@ msgstr "Token di aggiornamento Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configurare le credenziali Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Prima di utilizzare l'account Outlook connettersi all'account."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Inserisci un indirizzo e-mail valido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -228,13 +275,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Lasciare vuoto il campo della password per il server di posta Outlook %r. Il"
|
||||
" processo OAuth non la richiede."
|
||||
"Lascia vuoto il campo della password per il server di posta Outlook \"%s\", "
|
||||
"Il processo OAuth non la richiede"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -244,9 +290,8 @@ msgstr "Leggi di più"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Per il server %r è richiesto il protocollo SSL."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "Il protocollo SSL è richiesto per il server \"%s\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -263,16 +308,6 @@ msgstr "Segreto della tua app Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Tipo server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Per collegare un account impostare le credenziali API di Outlook nelle "
|
||||
"impostazioni generali."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -283,6 +318,35 @@ msgstr "L'URL per generare il codice di autorizzazione da Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Errore sconosciuto."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#~ msgid "An error occurred: %s."
|
||||
#~ msgstr "Si è verificato un errore: %s."
|
||||
|
||||
#~ msgid "Outlook is not configured on IAP."
|
||||
#~ msgstr "Outlook non è configurato nello IAP."
|
||||
|
||||
#~ msgid "Please configure your outlook credentials."
|
||||
#~ msgstr "Configurare le credenziali Outlook."
|
||||
|
||||
#~ msgid "You don't have an active subscription."
|
||||
#~ msgstr "Non hai un abbonamento attivo."
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Ritorna al server di posta"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Sono configurate le credenziali Outlook"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Per collegare un account impostare le credenziali API di Outlook nelle "
|
||||
#~ "impostazioni generali."
|
||||
|
|
|
|||
|
|
@ -1,35 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-11 17:17+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Outlookアカウントに接続"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Outlookアカウントに接続"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlookトークン有効\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlookトークン有効\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "有効"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "アクセストークンを取得する際にエラーが発生しました。 %s"
|
||||
|
||||
|
|
@ -81,36 +91,52 @@ msgstr "認証URI"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
msgstr "構成設定"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"OAuth認証プロセスでOutlookアカウントを接続します。 \n"
|
||||
"デフォルトでは、一致するメールアドレスを持つユーザのみがこのサーバを使用できます。使用範囲を広げるには、\"mail.default.from \"システムパラメータを設定する必要があります。"
|
||||
"デフォルトでは、一致するメールアドレスを持つユーザのみがこのサーバを使用でき"
|
||||
"ます。使用範囲を広げるには、\"mail.default.from \"システムパラメータを設定す"
|
||||
"る必要があります。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"OAuthを使用して個人Outlookアカウントに接続します。 \n"
|
||||
"Outlookのログインページにリダイレクトされ、許可を受け入れて下さい。"
|
||||
"、許可を受け入れるためにOutlookのログインページにリダイレクトされます。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "メールサーバに戻る"
|
||||
msgid "Go back"
|
||||
msgstr "戻る"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -128,18 +154,12 @@ msgstr "受信メールサーバ"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr "メールサーバ%rの不正な接続セキュリティ。\"TLS (STARTTLS)\"にセットして下さい。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Outlookのクレデンシャルが設定されているか"
|
||||
msgstr ""
|
||||
"メールサーバ“%s”の不正な接続セキュリティ。\"TLS (STARTTLS)\"にセットして下さ"
|
||||
"い。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -154,10 +174,35 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Outlookメールサーバにリンクできるのは管理者のみです。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "おっと、認証に失敗しました。時間をおいてもう一度お試しください。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"おっと! 送信元として %(email_login)s を認証しようとしていますが、現在のアドレ"
|
||||
"スは %(email_server)s です。アドレスが一致していることをご確認ください。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "送信メールサーバの種類"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -198,37 +243,42 @@ msgstr "Outlookリフレッシュトークン"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Outlookの認証情報を設定して下さい。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "使用前にOutlookアカウントと接続して下さい。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "有効なEメールアドレスを入力してください。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"\"ユーザ名\"の欄には、Outlookのユーザ名(メールアドレス)を入力して下さい。これはOutlook "
|
||||
"OAuthenticationトークンに使用したものと同じアカウントでなければなりません。"
|
||||
"\"ユーザ名\"の欄には、Outlook/Office365のユーザ名(メールアドレス)を入力して下"
|
||||
"さい。これはOutlook OAuthenticationトークンに使用したものと同じアカウントでな"
|
||||
"ければなりません。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr "Outlookメールサーバ%rのパスワードフィールドは空欄にして下さい。OAuth処理はそれを必要としません。"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Outlookメールサーバ“%s”のパスワードフィールドは空欄にして下さい。OAuth処理は"
|
||||
"それを必要としません。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -238,9 +288,8 @@ msgstr "続きを読む"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "サーバ%r用にSSLが必要です。"
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "サーバ “%s”用にSSLが必要です。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -257,14 +306,6 @@ msgstr "Outlookアプリのシークレット"
|
|||
msgid "Server Type"
|
||||
msgstr "サーバタイプ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr "一般設定でOutlook API認証情報を設定し、Outlookアカウントをリンクします。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -275,6 +316,25 @@ msgstr "Outlookの許可コードを生成するためのURL"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "不明なエラー"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザー"
|
||||
|
||||
#~ msgid "An error occurred: %s."
|
||||
#~ msgstr "エラーが発生しました: %s"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "メールサーバに戻る"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Outlookのクレデンシャルが設定されているか"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "一般設定でOutlook API認証情報を設定し、Outlookアカウントをリンクします。"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,21 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -31,8 +25,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -40,15 +43,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -72,27 +82,41 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
|
@ -110,19 +134,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -136,10 +152,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -180,21 +219,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -204,10 +246,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -218,8 +259,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -237,14 +277,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -254,16 +286,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
@ -1,273 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# 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: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "ម៉ាស៊ីនមេសំបុត្រចូល។"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "ការអានបន្ថែម"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "អាថ៌កំបាំង"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "ប្រភេទម៉ាស៊ីនមេ។"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,34 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linkup <link-up@naver.com>, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kwanghee Park (kwpa)" <kwpa@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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-12-11 06:44+0000\n"
|
||||
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Outlook 계정 연결하기"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" 유효한 Outlook 토큰\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" 유효한 Outlook 토큰\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "활성"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "액세스 토큰을 가져오는 중 오류가 발생했습니다. %s"
|
||||
|
||||
|
|
@ -80,23 +91,24 @@ msgstr "인증 URL"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"OAuth 인증 프로세스를 통하여 Outlook 계정을 연결합니다. \n"
|
||||
"기본값으로, 이메일 주소가 일치하는 사용자만 이 서버를 사용할 수 있습니다. 확장해서 사용하려면, \"mail.default.from\" 시스템 매개변수를 설정해야 합니다."
|
||||
"기본값으로, 이메일 주소가 일치하는 사용자만 이 서버를 사용할 수 있습니다. 확"
|
||||
"장해서 사용하려면, \"mail.default.from\" 시스템 매개변수를 설정해야 합니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -105,11 +117,25 @@ msgstr ""
|
|||
"권한을 수락할 수 있도록 Outlook 로그인 페이지로 이동합니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "메일 서버로 돌아가기"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "돌아가기"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -127,18 +153,12 @@ msgstr "수신 메일 서버"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr "Outlook 메일 서버 %r에 대한 연결 보안이 잘못되었습니다. \"TLS (STARTTLS)\"로 설정하시기 바랍니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Outlook 자격 증명 설정 여부"
|
||||
msgstr ""
|
||||
"Outlook 메일 서버 “%s”에 대한 연결 보안이 잘못되었습니다. \"TLS (STARTTLS)"
|
||||
"\"로 설정하시기 바랍니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -153,10 +173,33 @@ msgstr "Microsoft Outlook 믹스인"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "관리자만 Outlook 메일 서버를 연결할 수 있습니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "발신 메일 서버 유형"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -197,37 +240,41 @@ msgstr "Outlook 새로고침 토큰"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Outlook 자격 증명을 구성하십시오."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "사용 전에 Outlook 계정에 연결하세요."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "유효한 이메일 주소를 입력하세요."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"\"사용자 이름\" 필드에 Outlook/Office365 사용자 이름 (이메일 주소)을 입력하세요. 이 계정은 Outlook OAuth"
|
||||
" 인증 토큰에 사용된 계정과 동일해야 합니다."
|
||||
"\"사용자 이름\" 필드에 Outlook/Office365 사용자 이름 (이메일 주소)을 입력하세"
|
||||
"요. 이 계정은 Outlook OAuth 인증 토큰에 사용된 계정과 동일해야 합니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr "Outlook 메일 서버 %r에서 비밀번호 필드를 비워두세요. OAuth 프로세스에는 비밀번호가 필요하지 않습니다."
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"OAuth 프로세스에는 암호가 필요하지 않습니다. Outlook 메일 서버 “%s”의 암호 필"
|
||||
"드를 비워 두세요."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -237,9 +284,8 @@ msgstr "더 읽기"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "%r 서버에 SSL이 있어야 합니다."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "서버 “%s”에 SSL이 필요합니다."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -256,14 +302,6 @@ msgstr "Outlook 앱 비밀번호"
|
|||
msgid "Server Type"
|
||||
msgstr "서버 유형"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr "Outlook 계정을 연결하려면 일반 설정 항목에서 Outlook API 자격 증명을 설정하십시오."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -274,6 +312,23 @@ msgstr "Outlook에서 인증 코드를 생성하기 위한 URL."
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "알 수 없는 오류"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "메일 서버로 돌아가기"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Outlook 자격 증명 설정 여부"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Outlook 계정을 연결하려면 일반 설정 항목에서 Outlook API 자격 증명을 설정"
|
||||
#~ "하십시오."
|
||||
|
|
|
|||
|
|
@ -1,31 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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-08 19:19+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -35,8 +27,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -44,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "چالاک"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -76,27 +84,41 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -114,19 +136,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -140,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -184,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -208,10 +248,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -222,14 +261,13 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
msgstr "نهێنی"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -241,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -258,16 +288,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "بەکارهێنەر"
|
||||
|
|
@ -1,35 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Arunas V. <arunas@devoro.com>, 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-08 19:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Prijungti Outlook paskyrą"
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,8 +29,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -48,15 +47,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Gaunant prieigos prieigos raktą įvyko klaida. %s"
|
||||
|
||||
|
|
@ -80,27 +86,41 @@ msgstr "Konfigūracijos nustatymai"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Grįžkite į savo pašto serverį"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Grįžti"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -118,20 +138,10 @@ msgstr "Įeinančio pašto serveris"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Neteisinga ryšio sauga Outlook pašto serveriui %r. Nustatykite jį į „TLS "
|
||||
"(STARTTLS)“."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Ar sukonfigūruoti „Outlook“ tapatybės nustatymai"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -146,10 +156,33 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Tik administratorius gali susieti „Outlook“ pašto serverį."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -190,21 +223,24 @@ msgstr "Outlook Atnaujino prieigos raktas"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Prašau nustatyti Outlook Tapatybės parametrus"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -214,24 +250,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Palikite „Outlook“ pašto serverio %r slaptažodžio lauką tuščią. OAuth "
|
||||
"procesas to nereikalauja"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Skaityti daugiau"
|
||||
msgstr "Skaitykite toliau"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -249,16 +281,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Serverio tipas"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Bendruosiuose nustatymuose nustatykite „Outlook API“ kredencialus, kad "
|
||||
"susietumėte „Outlook“ paskyrą."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -266,18 +288,13 @@ msgstr ""
|
|||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "URL, skirtas generuoti autorizacijos kodą iš „Outlook“"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Nežinoma klaida."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
|
|
|||
|
|
@ -1,44 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
#
|
||||
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: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-07 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: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Labot uzstādījumus\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -46,22 +42,29 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentifikācija ar"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -73,35 +76,49 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -111,28 +128,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Ienākošā pasta serveris"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Pasta serveris"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -142,10 +151,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -163,12 +195,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -186,21 +218,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -210,22 +245,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Lasīt vairāk"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -241,14 +274,6 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Servera tips"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -261,6 +286,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -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: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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"
|
||||
|
|
@ -15,14 +15,6 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -31,8 +23,16 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -40,15 +40,21 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -72,7 +78,6 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
|
|
@ -81,18 +86,31 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
|
@ -110,17 +128,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to"
|
||||
" \"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -136,10 +146,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your"
|
||||
" address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -180,21 +213,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -204,10 +240,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -218,8 +253,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -237,14 +271,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -255,6 +281,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,273 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "ഇൻകമിംഗ് മെയിൽ സെർവർ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "മെയിൽ സെർവർ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,32 +1,23 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-08 17:57+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -36,8 +27,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -45,15 +45,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Идэвхтэй"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -77,27 +84,41 @@ msgstr "Тохиргооны тохируулга"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Буцах"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -115,19 +136,11 @@ msgstr "Ирэх Мэйлийн Сервер"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -141,10 +154,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -185,21 +221,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -209,10 +248,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -223,8 +261,7 @@ msgstr "Дэлгэрэнгүй унших"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -242,14 +279,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Серверийн төрөл"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -259,16 +288,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\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: 2026-02-04 07:53+0000\n"
|
||||
"Last-Translator: Oakarmin Iron <oakarminiron@gmail.com>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -35,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -44,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "အက်တစ်"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,35 +80,49 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "အိုင်ဒီ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -114,19 +137,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -140,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -184,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -208,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -222,8 +262,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -241,14 +280,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -258,16 +289,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "အသုံးပြုသူ"
|
||||
|
|
@ -1,34 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-08 19:20+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -47,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -79,27 +85,41 @@ msgstr "Innstillinger"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Tilbake"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -117,19 +137,11 @@ msgstr "Innkommende e-postserver"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -143,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -187,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -211,10 +249,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -225,8 +262,7 @@ msgstr "Les mer"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -244,14 +280,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Servertype"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\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-11-24 12:09+0000\n"
|
||||
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Verbind je Outlook account"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,30 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Instellingen bewerken\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Verbind je Outlook-account"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Geldige Token\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Geldige Outlook Token\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Geldige Token\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Geldige Outlook Token\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Er is een fout opgetreden bij het ophalen van het toegangstoken. %s"
|
||||
|
||||
|
|
@ -81,36 +91,53 @@ msgstr "Authenticatie URL"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
msgstr "Configuratie-instellingen"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Verbind je Outlook account met het OAuth-authenticatieprocess. \n"
|
||||
"Standaard kan alleen een gebruiker met een overeenkomend e-mailadres deze server gebruiken. Om het gebruik ervan uit te breiden, moet je een \"mail.default.from\" systeemparameter instellen."
|
||||
"Standaard kan alleen een gebruiker met een overeenkomend e-mailadres deze "
|
||||
"server gebruiken. Om het gebruik ervan uit te breiden, moet je een "
|
||||
"\"mail.default.from\" systeemparameter instellen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Verbind je persoonlijk Outlook account met OAuth. \n"
|
||||
"Je wordt doorgestuurd naar de Outlook loginpagina om de machtigingen te accepteren."
|
||||
"Je wordt doorgestuurd naar de Outlook loginpagina om de machtigingen te "
|
||||
"accepteren."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Ga terug naar je mailserver"
|
||||
msgid "Go back"
|
||||
msgstr "Ga terug"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -128,20 +155,12 @@ msgstr "Inkomende e-mailserver"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Onjuiste verbindingsbeveiliging voor Outlook-mailserver %r. Stel deze in op "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Zijn Outlook inloggegevens geconfigureerd"
|
||||
"Onjuiste verbindingsbeveiliging voor Outlook-mailserver “%s”. Stel deze in "
|
||||
"op \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -156,10 +175,36 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Alleen de beheerder kan een Outlook mailserver koppelen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Oeps, authenticatie mislukt. Probeer het later nog eens."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Oeps, je probeert een autorisatie aan te maken om te verzenden vanaf %"
|
||||
"(email_login)s, maar je e-mailadres is %(email_server)s. Zorg ervoor dat je "
|
||||
"adressen overeenkomen!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Type uitgaande mailserver"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -200,21 +245,24 @@ msgstr "Outlook token verversen"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configureer je Outlook inloggegevens."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Maak verbinding met je Outlook account voordat je dit gebruikt."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Voer een geldig e-mailadres in."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -227,12 +275,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Laat het wachtwoordveld leeg voor Outlook mailserver %r. Het OAuth-proces "
|
||||
"Laat het wachtwoordveld leeg voor Outlook mailserver “%s”. Het OAuth-proces "
|
||||
"vereist dit niet"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -243,9 +290,8 @@ msgstr "Lees meer"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL is vereist voor de server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL is vereist voor de server “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -262,16 +308,6 @@ msgstr "Geheim van je Outlook app"
|
|||
msgid "Server Type"
|
||||
msgstr "Servertype"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Stel je Outlook API-inloggegevens in de algemene instellingen in om een "
|
||||
"Outlook account te koppelen."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -282,6 +318,23 @@ msgstr "De URL om de authenticatiecode te genereren van Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Onbekende fout."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Ga terug naar je mailserver"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Zijn Outlook inloggegevens geconfigureerd"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Stel je Outlook API-inloggegevens in de algemene instellingen in om een "
|
||||
#~ "Outlook account te koppelen."
|
||||
|
|
|
|||
|
|
@ -1,269 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Piotr Strebski <strebski@gmail.com>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# DanielDemedziuk <daniel.demedziuk@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025, 2026.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:51+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "<i class=\"fa fa-arrow-right\"/>Połącz swoje konto Outlook"
|
||||
"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.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,30 +31,40 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Token Outlook poprawny\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Token Outlook poprawny\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Wystąpił błąd podczas pobierania tokena dostępu. %s"
|
||||
|
||||
|
|
@ -82,36 +83,53 @@ msgstr "Uwierzytelnienie URI"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
msgstr "Konfiguracja ustawień"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Połącz swoje konto Outlook za pomocą procesu uwierzytelniania OAuth. \n"
|
||||
"Domyślnie tylko użytkownik z pasującym adresem e-mail będzie mógł korzystać z tego serwera. Aby rozszerzyć jego użycie, należy ustawić parametr systemowy \"mail.default.from\"."
|
||||
"Domyślnie tylko użytkownik z pasującym adresem e-mail będzie mógł korzystać "
|
||||
"z tego serwera. Aby rozszerzyć jego użycie, należy ustawić parametr "
|
||||
"systemowy \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Połącz swoje osobiste konto Outlook za pomocą OAuth. \n"
|
||||
"Zostaniesz przekierowany na stronę logowania do programu Outlook, aby zaakceptować uprawnienia."
|
||||
"Zostaniesz przekierowany na stronę logowania do programu Outlook, aby "
|
||||
"zaakceptować uprawnienia."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Wróć do serwera pocztowego"
|
||||
msgid "Go back"
|
||||
msgstr "Wróć"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -129,20 +147,10 @@ msgstr "Serwer poczty przychodzącej"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Nieprawidłowe zabezpieczenie połączenia dla serwera pocztowego Outlook %r. "
|
||||
"Proszę ustawić je na \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Czy poświadczenia programu Outlook są skonfigurowane"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -157,10 +165,35 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Tylko administrator może połączyć serwer pocztowy programu Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Ups, nie mogliśmy Cię uwierzytelnić. Spróbuj ponownie później."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Ups, tworzysz autoryzację do wysłania z %(email_login)s, ale Twój adres to %"
|
||||
"(email_server)s. Upewnij się, że adresy pasują do siebie!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Typ serwera wychodzących e-maili"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -183,7 +216,7 @@ msgstr "ID klienta Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Klucz Client Secret Outlook"
|
||||
msgstr "Klucz klienta Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -201,21 +234,24 @@ msgstr "Odśwież token Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Skonfiguruj dane uwierzytelniające Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Przed użyciem proszę połączyć się z kontem Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Wprowadź prawidłowy adres e-mail."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -225,13 +261,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Proszę pozostawić puste pole hasła dla serwera pocztowego Outlook %r. Proces"
|
||||
" OAuth go nie wymaga."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -241,35 +274,24 @@ msgstr "Czytaj Więcej"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL jest wymagany dla serwera %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "Dla serwera \"%s\" jest wymagany certyfikat SSL."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Sekret"
|
||||
msgstr "Klucz"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Sekret aplikacji Outlook"
|
||||
msgstr "Klucz aplikacji Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Typ serwera"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"W ustawieniach ogólnych skonfiguruj poświadczenia API programu Outlook, aby "
|
||||
"połączyć konto programu Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -280,6 +302,23 @@ msgstr "Adres URL do generowania kodu autoryzacji z programu Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Nieznany błąd."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Wróć do serwera pocztowego"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Czy poświadczenia programu Outlook są skonfigurowane"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "W ustawieniach ogólnych skonfiguruj poświadczenia API programu Outlook, "
|
||||
#~ "aby połączyć konto programu Outlook."
|
||||
|
|
|
|||
|
|
@ -1,75 +1,91 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# cafonso <cafonso62@gmail.com>, 2022
|
||||
# Rita Bastos, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rita Bastos, 2024\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-11-08 18:02+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "Associe a sua conta Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Conecte sua conta do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token válido do Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token válido do Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ocorreu um erro durante a obtenção do código de acesso. %s"
|
||||
msgstr "Houve um erro ao buscar o token de acesso. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
msgstr "Autenticar com"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "URI de Autenticação"
|
||||
msgstr "URI de autenticação"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
|
|
@ -79,27 +95,48 @@ msgstr "Configurações"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Conecte sua conta do Outlook com o processo de autenticação OAuth. \n"
|
||||
"Por padrão, somente um usuário com um endereço de e-mail correspondente "
|
||||
"poderá usar esse servidor. Para estender seu uso, você deve definir um "
|
||||
"parâmetro de sistema \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conecte sua conta pessoal do Outlook usando o OAuth. \n"
|
||||
"Você será redirecionado para a página de login do Outlook para aceitar as "
|
||||
"permissões."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
msgid "Go back"
|
||||
msgstr "Voltar"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -107,129 +144,150 @@ msgstr "ID"
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
msgstr "ID do seu aplicativo Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Servidor de E-mail de Entrada"
|
||||
msgstr "Servidor de recebimento de e-mails"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "A Credencial do Outlook está configurada"
|
||||
"Segurança de conexão do servidor de e-mail do Outlook “%s” incorreta. Defina-"
|
||||
"o como \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
msgstr "Servidor de e-mail"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
msgstr "Mixin do Microsoft Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Somente o administrador pode vincular um servidor de e-mail Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Código de Acesso do Outlook"
|
||||
msgstr "Código de acesso do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Data de Expiração do Código de Acesso do Outlook"
|
||||
msgstr "Data e hora de expiração do código de acesso do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
msgstr "ID do cliente Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
msgstr "Segredo do cliente Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
msgstr "Autenticação Outlook OAuth"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Atualizar Código do Outlook"
|
||||
msgstr "Código de atualização do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
msgstr "Configure suas credenciais do Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Conecte-se à sua conta do Outlook antes de usá-lo."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Preencha o campo \"Nome de usuário\" com seu nome de usuário do Outlook/"
|
||||
"Office365 (seu endereço de e-mail). Essa deve ser a mesma conta usada para o "
|
||||
"token do Outlook OAuthentication."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Por favor deixe o campo da senha vazio para o servidor de correio Outlook "
|
||||
"%r. O processo de OAuth não o exige."
|
||||
"Deixe vazio o campo de senha do servidor de e-mail do Outlook “%s”. O "
|
||||
"processo de OAuth não a exige"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
msgstr "Leia mais"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL é obrigatório para o servidor “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -239,23 +297,13 @@ msgstr "Segredo"
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
msgstr "Segredo do seu aplicativo Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tipo de servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configure as suas credenciais Outlook API na configuração geral para "
|
||||
"associar a sua conta Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -265,16 +313,24 @@ msgstr "O URL para gerar o código de autorização do Outlook"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr "Erro desconhecido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Voltar ao seu servidor de e-mail"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Credencial do Outlook está configurada?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configure as suas credenciais de API do Outlook na configuração geral "
|
||||
#~ "para vincular a sua conta Outlook."
|
||||
|
|
|
|||
|
|
@ -1,35 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Éder Brito <britoederr@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Carlos Eduardo Nissola Migliavacca <carlos.migliavacca@gmail.com>, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Maitê Dietze (madi)" <madi@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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-13 17:15+0000\n"
|
||||
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "Conecte à sua conta do Outlook"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,32 +29,52 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Conecte sua conta do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token do Outlook válido\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token válido do Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token do Outlook válido\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token válido do Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ocorreu um erro ao resgatar o token de acesso. %s"
|
||||
msgstr "Houve um erro ao buscar o token de acesso. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
|
|
@ -76,7 +86,7 @@ msgstr "Autenticar com"
|
|||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "URI de Autenticação"
|
||||
msgstr "URI de autenticação"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
|
|
@ -86,31 +96,48 @@ msgstr "Configurações"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Conecte sua conta do Outlook com o processo de autenticação OAuth. \n"
|
||||
"Por padrão, somente um usuário com um endereço de e-mail correspondente poderá usar esse servidor. Para estender seu uso, você deve definir um parâmetro de sistema \"mail.default.from\"."
|
||||
"Por padrão, somente um usuário com um endereço de e-mail correspondente "
|
||||
"poderá usar esse servidor. Para estender seu uso, você deve definir um "
|
||||
"parâmetro de sistema \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conecte sua conta pessoal do Outlook usando o OAuth. \n"
|
||||
"Você será redirecionado para a página de login do Outlook para aceitar as permissões."
|
||||
"Você será redirecionado para a página de login do Outlook para aceitar as "
|
||||
"permissões."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Exibir nome"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Voltar ao seu servidor de e-mail"
|
||||
msgid "Go back"
|
||||
msgstr "Volte"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -128,61 +155,79 @@ msgstr "Servidor de recebimento de e-mails"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Conexão de Segurança Incorreta para o servidor de e-mail Outlook %r. Favor "
|
||||
"alterar para \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Credencial do Outlook está Configurada?"
|
||||
"Segurança de conexão do servidor de e-mail do Outlook “%s” incorreta. Defina-"
|
||||
"o como \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Servidor de E-mail"
|
||||
msgstr "Servidor de e-mail"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "Microsoft Outlook Mixin"
|
||||
msgstr "Mixin do Microsoft Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Somente o Administrador pode ligar a um servidor de email Outlook."
|
||||
msgstr "Somente o administrador pode vincular um servidor de e-mail Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Opa! Não foi possível autenticá-lo. Tente novamente mais tarde."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Opa! Você está criando uma autorização para enviar de %(email_login)s, mas "
|
||||
"seu endereço é %(email_server)s. Certifique-se de que os endereços sejam "
|
||||
"iguais!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipo de servidor de envio de e-mail"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Código de Acesso do Outlook"
|
||||
msgstr "Código de acesso do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Data de Expiração do Código de Acesso do Outlook"
|
||||
msgstr "Data e hora de expiração do código de acesso do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "ID Outlook Client"
|
||||
msgstr "ID do cliente Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Segredo Outlook Client"
|
||||
msgstr "Segredo do cliente Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -195,45 +240,47 @@ msgstr "Autenticação Outlook OAuth"
|
|||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Código de Atualização Outlook"
|
||||
msgstr "Código de atualização do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Favor configurar as credenciais do Outlook."
|
||||
msgstr "Configure suas credenciais do Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Conecte-se à sua conta do Outlook antes de usá-lo."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Insira um e-mail válido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Preencha o campo \" Nome de usuário\" com seu nome de usuário do "
|
||||
"Outlook/Office365 (seu endereço de e-mail). Essa deve ser a mesma conta "
|
||||
"usada para o Outlook OAuthentication Token."
|
||||
"Preencha o campo \"Nome de usuário\" com seu nome de usuário do Outlook/"
|
||||
"Office365 (seu endereço de e-mail). Essa deve ser a mesma conta usada para o "
|
||||
"token do Outlook OAuthentication."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Por favor deixe o campo da senha vazio para o servidor de correio Outlook "
|
||||
"%r. O processo de OAuth não o exige."
|
||||
"Deixe vazio o campo de senha do servidor de e-mail do Outlook “%s”. O "
|
||||
"processo de OAuth não a exige"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -243,14 +290,13 @@ msgstr "Leia mais"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "O SSL é necessário para o servidor %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL é obrigatório para o servidor “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
msgstr "Segredo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -260,17 +306,7 @@ msgstr "Segredo do seu aplicativo Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tipo de Servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configure as suas credenciais Outlook API na configuração geral para "
|
||||
"associar a sua conta Outlook."
|
||||
msgstr "Tipo de servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -282,6 +318,23 @@ msgstr "O URL para gerar o código de autorização do Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Erro desconhecido"
|
||||
msgstr "Erro desconhecido."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Voltar ao seu servidor de e-mail"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Credencial do Outlook está configurada?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Configure as suas credenciais de API do Outlook na configuração geral "
|
||||
#~ "para vincular a sua conta Outlook."
|
||||
|
|
|
|||
|
|
@ -1,38 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Betty Keresztesi, 2024
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Alin Ilie <alin.ilie@logit-solutions.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-02 14:55+0000\n"
|
||||
"Last-Translator: Alin Ilie <alin.ilie@logit-solutions.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conectați-vă la contul dvs. Outlook"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -42,24 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Conectați-vă contul Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "A apărut o eroare la obținerea token-ului de acces. %s"
|
||||
|
||||
|
|
@ -73,7 +86,7 @@ msgstr "Autentificare cu"
|
|||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "URI de autentificare"
|
||||
msgstr "URI autentificare"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
|
|
@ -83,31 +96,48 @@ msgstr "Setări de configurare"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Conectați-vă contul Outlook folosind procesul de autentificare OAuth.\n"
|
||||
"Implicit, doar un utilizator cu o adresă de email corespunzătoare va putea folosi acest server. Pentru a extinde utilizarea, trebuie să setați parametrul de sistem \"mail.default.from\"."
|
||||
"Implicit, doar un utilizator cu o adresă de email corespunzătoare va putea "
|
||||
"folosi acest server. Pentru a extinde utilizarea, trebuie să setați "
|
||||
"parametrul de sistem \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conectați-vă contul personal Outlook folosind OAuth.\n"
|
||||
"Veți fi redirecționat către pagina de autentificare Outlook pentru a accepta permisiunile."
|
||||
"Veți fi redirecționat către pagina de autentificare Outlook pentru a accepta "
|
||||
"permisiunile."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Întoarceți-vă la serverul dvs. de e-mail"
|
||||
msgid "Go back"
|
||||
msgstr "Înapoi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -125,21 +155,13 @@ msgstr "Server Primire E-mail-uri"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Securitatea conexiunii incorectă pentru serverul de e-mail Outlook %r. Vă "
|
||||
"Securitate conexiune incorectă pentru serverul de e-mail Outlook „%s”. Vă "
|
||||
"rugăm să o setați la \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Sunt configurate credențialele Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -153,23 +175,51 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Numai administratorul poate conecta un server de e-mail Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
"Ne pare rău, nu v-am putut autentifica. Vă rugăm să încercați din nou mai "
|
||||
"târziu."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Ne pare rău, creați o autorizație de trimitere de la %(email_login)s, dar "
|
||||
"adresa dvs. este %(email_server)s. Asigurați-vă că adresele dvs. se "
|
||||
"potrivesc!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Tipul serverului de e-mail de ieșire"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Token-ul de acces Outlook"
|
||||
msgstr "Token de acces Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Timestamp-ul expirării token-ului de acces Outlook"
|
||||
msgstr "Timestamp expirare token de acces Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
|
|
@ -192,45 +242,47 @@ msgstr "Autentificare Outlook OAuth"
|
|||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Token-ul de reîmprospătare Outlook"
|
||||
msgstr "Token de reîmprospătare Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Vă rugăm să configurați credențialele dvs. Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Vă rugăm să vă conectați cu contul Outlook înainte de a-l utiliza."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Vă rugăm să introduceți o adresă de e-mail validă."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Vă rugăm să completați câmpul \"Username\" cu numele de utilizator "
|
||||
"Outlook/Office365 (adresa dvs. de email). Acesta trebuie să fie același cont"
|
||||
" ca cel folosit pentru Token-ul de autentificare Outlook."
|
||||
"Vă rugăm să completați câmpul \"Username\" cu numele de utilizator Outlook/"
|
||||
"Office365 (adresa dvs. de email). Acesta trebuie să fie același cont ca cel "
|
||||
"folosit pentru Token-ul de autentificare Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Vă rugăm să lăsați câmpul parolă gol pentru serverul de e-mail Outlook %r. "
|
||||
"Procesul OAuth nu necesită acest lucru"
|
||||
"Vă rugăm să lăsați câmpul de parolă gol pentru serverul de e-mail Outlook "
|
||||
"„%s”. Procesul OAuth nu necesită acest lucru."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -240,9 +292,8 @@ msgstr "Mai mult"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL este necesar pentru serverul „%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -259,16 +310,6 @@ msgstr "Secretul aplicației Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Tip de server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configurați credențialele API Outlook în setările generale pentru a asocia "
|
||||
"un cont Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -279,6 +320,10 @@ msgstr "URL-ul pentru a genera codul de autorizare din Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Eroare necunoscută."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizator"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "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 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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-11-08 19:17+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Подключите ваш аккаунт Outlook"
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -41,31 +31,57 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Подключите учетную запись Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Токен Outlook действителен\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Токен Outlook действителен\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Активный"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Возникла ошибка при получении токена доступа. %s"
|
||||
msgstr "При получении маркера доступа произошла ошибка. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Авторизоваться через"
|
||||
msgstr "Пройдите аутентификацию с помощью"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -77,39 +93,57 @@ msgstr "URI аутентификации"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
msgstr "Параметры конфигурации"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Подключите учетную запись Outlook с помощью процесса аутентификации OAuth. \n"
|
||||
"По умолчанию только пользователь с соответствующим адресом электронной почты сможет использовать этот сервер. Чтобы расширить его использование, необходимо установить системный параметр \"mail.default.from\"."
|
||||
"Подключите учетную запись Outlook с помощью процесса аутентификации "
|
||||
"OAuth. \n"
|
||||
"По умолчанию только пользователь с соответствующим адресом электронной почты "
|
||||
"сможет использовать этот сервер. Чтобы расширить его использование, "
|
||||
"необходимо установить системный параметр \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Подключите свою личную учетную запись Outlook с помощью OAuth.\n"
|
||||
"Вы будете перенаправлены на страницу входа в Outlook, чтобы принять разрешения."
|
||||
"Вы будете перенаправлены на страницу входа в Outlook, чтобы принять "
|
||||
"разрешения."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Перейти обратно на почтовый сервер"
|
||||
msgid "Go back"
|
||||
msgstr "Назад"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -124,61 +158,76 @@ msgstr "Сервер входящей почты"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Установлено неверное значение Безопасности доступа для почтового сервера "
|
||||
"Outlook %r. Пожалуйста, укажите \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Настроены ли учетные данные Outlook"
|
||||
"Неверный тип защиты соединения для почтового сервера Outlook «%s». "
|
||||
"Установите значение «TLS (STARTTLS)»."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Почтовый сервер"
|
||||
msgstr "Почтовый Сервер"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "Microsoft Outlook Mixin"
|
||||
msgstr "Миксин Microsoft Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Связывать почтовый сервер Outlook могут только администраторы."
|
||||
msgstr "Только администратор может связать почтовый сервер Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Токен доступа Outlook"
|
||||
msgstr "Токен доступа к Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Время истечения срока действия токена доступа Outlook"
|
||||
msgstr "Временная метка истечения срока действия токена доступа к Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "Id клиента Outlook"
|
||||
msgstr "Идентификатор клиента Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Секретный ключ клиента Outlook"
|
||||
msgstr "Секрет клиента Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -196,52 +245,53 @@ msgstr "Токен обновления Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Пожалуйста настройте учетные данные Outlook"
|
||||
msgstr "Пожалуйста, настройте учетные данные Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Перед использованием подключитесь к учетной записи Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Заполните поле \"Имя пользователя\" именем пользователя Outlook/Office365 "
|
||||
"(ваш адрес электронной почты). Это должна быть та же учетная запись, которая"
|
||||
" используется для аутентификационного токена Outlook OAuthentication Token."
|
||||
"(ваш адрес электронной почты). Это должна быть та же учетная запись, которая "
|
||||
"используется для аутентификационного токена Outlook OAuthentication Token."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Пожалуйста оставьте поле для ввода пароля пустым для почтового сервера "
|
||||
"Outlook %r. Это не требуется для протокола OAuth."
|
||||
"Оставьте поле пароля пустым для почтового сервера Outlook «%s». Процесс "
|
||||
"OAuth не требует"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Читать далее"
|
||||
msgstr "Подробнее"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Для сервера требуется SSL %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "Для сервера «%s» требуется SSL."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -258,35 +308,50 @@ msgstr "Секрет вашего приложения Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Тип сервера"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Укажите ваши учетные данные для Outlook API в общих настройках для того, "
|
||||
"чтобы привязать аккаунт Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "URL для генерации кода авторизации от Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
msgstr "URL-адрес для генерации кода авторизации из Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Неизвестная ошибка."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Вернитесь на свой почтовый сервер"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Incorrect Connection Security for Outlook mail server %r. Please set it "
|
||||
#~ "to \"TLS (STARTTLS)\"."
|
||||
#~ msgstr ""
|
||||
#~ "Неверная защита соединения для почтового сервера Outlook %r. Пожалуйста, "
|
||||
#~ "установите значение \"TLS (STARTTLS)\"."
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Настроена ли учетная запись Outlook"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please leave the password field empty for Outlook mail server %r. The "
|
||||
#~ "OAuth process does not require it"
|
||||
#~ msgstr ""
|
||||
#~ "Пожалуйста, оставьте поле пароля пустым для почтового сервера Outlook %r. "
|
||||
#~ "Процесс OAuth не требует этого"
|
||||
|
||||
#~ msgid "SSL is required for the server %r."
|
||||
#~ msgstr "Для сервера требуется SSL %r."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Установите учетные данные Outlook API в общих настройках, чтобы связать "
|
||||
#~ "учетную запись Outlook."
|
||||
|
|
|
|||
|
|
@ -1,33 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Filip Hanes <filip.hanes@protonmail.com>, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
#
|
||||
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: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 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-07 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: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -37,8 +24,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -46,15 +42,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -73,35 +76,49 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -111,28 +128,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server prichádzajúcej pošty"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mailový server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -142,10 +151,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -186,21 +218,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -210,22 +245,20 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Čítať viac"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -241,14 +274,6 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Typ servera"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -260,16 +285,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-11-08 21:59+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,8 +29,17 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -49,15 +47,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -81,27 +86,41 @@ msgstr "Uredi nastavitve"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Nazaj"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -119,19 +138,11 @@ msgstr "Strežnih vhodne pošte"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -145,10 +156,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -189,21 +223,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -213,10 +250,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -227,8 +263,7 @@ msgstr "Preberi več"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -246,14 +281,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr "Tip Strežnika"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -264,6 +291,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
#
|
||||
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: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -31,8 +24,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -40,15 +42,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -72,27 +81,41 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
|
@ -110,19 +133,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -136,10 +151,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -180,21 +218,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -204,10 +245,9 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -218,8 +258,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -237,14 +276,6 @@ msgstr ""
|
|||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -254,16 +285,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,282 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "An error occurred when fetching the access token. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentifikujte sa"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "Аутентикациони URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Vratite se na svoj mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr "ID vaše Outlook aplikacije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Dolazni mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Da li je Outlook Credential konfigurisan"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "Microsoft Outlook Mixin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Samo administrator može povezati Outlook mail server."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Outlook pristupni token"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Outlook Vremenska oznaka isteka pristupnog tokena"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "Outlook Client Id"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook Client Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr "Outlook OAuth Autentifikacija"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Outlook Refresh Token"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Molimo konfigurišite svoje Outlook akreditive."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
"Molimo vas da se povežete sa svojim Outlook nalogom pre nego što ga "
|
||||
"koristite."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Pročitajte više"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL is required for the server %r."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Tajna vaše Outlook aplikacije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tup Servera"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "The URL to generate the authorization code from Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Nepoznata greška."
|
||||
|
|
@ -1,31 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\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-08 17:56+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_outlook/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: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -35,8 +28,17 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
|
@ -44,15 +46,22 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,32 +80,46 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -114,19 +137,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -140,10 +155,33 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -161,12 +199,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
msgstr "Outlook Client Id"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
msgstr "Outlook Client Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
|
|
@ -184,21 +222,24 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -208,28 +249,26 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
msgstr "Pročitajte više"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Сакрэт"
|
||||
msgstr "Tajni ključ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -239,15 +278,7 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
msgstr "Tup Servera"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -258,16 +289,11 @@ msgstr ""
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
|
@ -1,36 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Robin Calvin, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: 2025-11-18 13:49+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,24 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-pil-höger\"/>\n"
|
||||
" Anslut ditt Outlook-konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ett fel uppstod vid hämtning av åtkomstpolletten. %s"
|
||||
|
||||
|
|
@ -81,31 +95,48 @@ msgstr "Inställningar"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Anslut ditt Outlook-konto med OAuth-autentiseringsprocessen. \n"
|
||||
"Som standard kommer endast en användare med en matchande e-postadress att kunna använda den här servern. För att utöka användningen bör du ställa in en systemparameter \"mail.default.from\"."
|
||||
"Som standard kommer endast en användare med en matchande e-postadress att "
|
||||
"kunna använda den här servern. För att utöka användningen bör du ställa in "
|
||||
"en systemparameter \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Anslut ditt personliga Outlook-konto med hjälp av OAuth.\n"
|
||||
"Du kommer att omdirigeras till inloggningssidan för Outlook för att acceptera behörigheterna."
|
||||
"Du kommer att omdirigeras till inloggningssidan för Outlook för att "
|
||||
"acceptera behörigheterna."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Gå tillbaka till din e-postserver"
|
||||
msgid "Go back"
|
||||
msgstr "Gå tillbaka"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -123,20 +154,12 @@ msgstr "Inkommande e-postserver"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Felaktig anslutningssäkerhet för Outlook mailserver %r. Vänligen ställ in "
|
||||
"den på \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Är Outlook-legitimationen konfigurerad"
|
||||
"Felaktig anslutningssäkerhet för Outlook e-postserver “%s”. Ställ in den på "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -151,10 +174,35 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Endast administratören kan länka en Outlook-mailserver."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Hoppla! Vi kunde inte autentisera dig. Försök igen senare."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Hoppla! Du skapar en auktorisering för att skicka från %(email_login)s men "
|
||||
"din adress är %(email_server)s. Se till att dina adresser matchar!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Utgående mailserver typ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -195,21 +243,24 @@ msgstr "Outlook Refresh Token"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Vänligen konfigurera dina Outlook-uppgifter."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Anslut till ditt Outlook-konto innan du använder det."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Vänligen fyll i en giltig e-postadress."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -222,13 +273,12 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Lämna lösenordsfältet tomt för Outlook mail server %r. OAuth-processen "
|
||||
"kräver inte det"
|
||||
"Lämna lösenordsfältet tomt för Outlook e-postserver “%s”. OAuth-processen "
|
||||
"kräver det inte"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -238,9 +288,8 @@ msgstr "Läs mer"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL krävs för servern %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL krävs för servern “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -257,16 +306,6 @@ msgstr "Hemligheten bakom din Outlook-app"
|
|||
msgid "Server Type"
|
||||
msgstr "Servertyp"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Ställ in dina Outlook API-autentiseringsuppgifter i de allmänna "
|
||||
"inställningarna för att länka ett Outlook-konto."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -274,18 +313,26 @@ msgstr ""
|
|||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "URL:en för att generera auktoriseringskoden från Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Okänt fel."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Gå tillbaka till din e-postserver"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Är Outlook-legitimationen konfigurerad"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Ställ in dina Outlook API-autentiseringsuppgifter i de allmänna "
|
||||
#~ "inställningarna för att länka ett Outlook-konto."
|
||||
|
|
|
|||
|
|
@ -1,269 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -1,33 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\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-11-08 21:59+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -37,24 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"แก้ไขการตั้งค
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" เชื่อมต่อบัญชี Outlook ของคุณ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" โทเค็น Outlook ถูกต้อง\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" โทเค็น Outlook ถูกต้อง\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "เกิดข้อผิดพลาดขณะดึงข้อมูลโทเค็นเพื่อการเข้าถึง %s"
|
||||
|
||||
|
|
@ -68,7 +85,7 @@ msgstr "ยืนยันตัวตนด้วย"
|
|||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "URI การยืนยันถูกต้อง"
|
||||
msgstr "URI การยืนยันความถูกต้อง"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
|
|
@ -78,18 +95,19 @@ msgstr "ตั้งค่าการกำหนดค่า"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"เชื่อมต่อบัญชี Outlook ของคุณกับกระบวนการยืนยันตัวตน OAuth\n"
|
||||
"ตามค่าเริ่มต้น เฉพาะผู้ใช้ที่มีที่อยู่อีเมลตรงกันเท่านั้นที่จะสามารถใช้เซิร์ฟเวอร์นี้ได้ หากต้องการขยายการใช้งาน คุณควรตั้งค่าพารามิเตอร์ระบบ \"mail.default.from\""
|
||||
"ตามค่าเริ่มต้น เฉพาะผู้ใช้ที่มีที่อยู่อีเมลตรงกันเท่านั้นที่จะสามารถใช้เซิร์ฟเวอร์นี้ได้ "
|
||||
"หากต้องการขยายการใช้งาน คุณควรตั้งค่าพารามิเตอร์ระบบ \"mail.default.from\""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -98,11 +116,25 @@ msgstr ""
|
|||
"คุณจะถูกนำไปที่หน้าเข้าสู่ระบบ Outlook เพื่อยอมรับการอนุญาต"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "กลับไปที่เซิร์ฟเวอร์อีเมลของคุณ"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "กลับไป"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
|
@ -120,25 +152,17 @@ msgstr "เซิร์ฟเวอร์อีเมลขาเข้า"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"ความปลอดภัยในการเชื่อมต่อไม่ถูกต้องสำหรับเซิร์ฟเวอร์จดหมาย Outlook %r "
|
||||
"โปรดตั้งค่าเป็น \"TLS (STARTTLS)\""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "มีการกำหนดค่าข้อมูลรับรอง Outlook หรือไม่"
|
||||
"การรักษาความปลอดภัยการเชื่อมต่อสำหรับเซิร์ฟเวอร์อีเมล Outlook “%s” ไม่ถูกต้อง กรุณาตั้งค่าเป็น "
|
||||
"\"TLS (STARTTLS)\""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Outgoing Mail Server"
|
||||
msgstr "เมลเซิร์ฟเวอร์"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -148,10 +172,33 @@ msgstr "Microsoft Outlook มิกซ์อิน"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "มีเพียงผู้ดูแลระบบเท่านั้นที่สามารถลิงก์เซิร์ฟเวอร์อีเมล Outlook ได้"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -192,40 +239,41 @@ msgstr "โทเค็นการรีเฟรช Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "โปรดกำหนดค่าข้อมูลรับรอง Outlook ของคุณ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "โปรดเชื่อมต่อกับบัญชี Outlook ของคุณก่อนใช้งาน"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"กรุณากรอกข้อมูลในช่อง \"ชื่อผู้ใช้\" ด้วยชื่อผู้ใช้ Outlook/Office365 ของคุณ"
|
||||
" (ที่อยู่อีเมลของคุณ) นี่ควรเป็นบัญชีเดียวกับบัญชีที่ใช้สำหรับ Outlook "
|
||||
"OAuthentication Token"
|
||||
"กรุณากรอกข้อมูลในช่อง \"ชื่อผู้ใช้\" ด้วยชื่อผู้ใช้ Outlook/Office365 ของคุณ (ที่อยู่อีเมลของคุณ) "
|
||||
"นี่ควรเป็นบัญชีเดียวกับบัญชีที่ใช้สำหรับ Outlook OAuthentication โทเค็น"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"โปรดเว้นฟิลด์รหัสผ่านว่างไว้สำหรับเซิร์ฟเวอร์อีเมล Outlook %r กระบวนการ "
|
||||
"OAuth ไม่ต้องการมัน"
|
||||
"โปรดเว้นช่องรหัสผ่านว่างไว้สำหรับเซิร์ฟเวอร์อีเมล Outlook “%s” กระบวนการ OAuth "
|
||||
"ไม่ต้องการสิ่งนี้"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -235,9 +283,8 @@ msgstr "อ่านเพิ่มเติม"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "จำเป็นต้องมี SSL สำหรับเซิร์ฟเวอร์ %r"
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -254,16 +301,6 @@ msgstr "ความลับของแอปพลิเคชัน Outlook
|
|||
msgid "Server Type"
|
||||
msgstr "ประเภทเซิร์ฟเวอร์"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"ตั้งค่าข้อมูลประจำตัว Outlook API "
|
||||
"ของคุณในการตั้งค่าทั่วไปเพื่อเชื่อมโยงบัญชี Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -274,6 +311,21 @@ msgstr "URL เพื่อสร้างรหัสการยืนยั
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "กลับไปที่เซิร์ฟเวอร์อีเมลของคุณ"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "มีการกำหนดค่าข้อมูลรับรอง Outlook หรือไม่"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr "ตั้งค่าข้อมูลประจำตัว Outlook API ของคุณในการตั้งค่าทั่วไปเพื่อเชื่อมโยงบัญชี Outlook"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# İlknur Gözütok, 2023
|
||||
# Halil, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
# "Malaz Siddig Elsayed Abuidris (msea)" <msea@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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-28 12:50+0000\n"
|
||||
"Last-Translator: \"Malaz Siddig Elsayed Abuidris (msea)\" <msea@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Outlook hesabınızı bağlayın"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -43,30 +30,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Outlook hesabınızı bağlayın"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook belirteci geçerli\n"
|
||||
" </span>"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Tokeni Geçerli\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook belirteci geçerli\n"
|
||||
" </span>"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Tokeni Geçerli\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Erişim belirteci alınırken bir hata oluştu. %s"
|
||||
|
||||
|
|
@ -90,18 +97,20 @@ msgstr "Yapılandırma Ayarları"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Outlook hesabınızı OAuth Kimlik Doğrulama işlemine bağlayın. \n"
|
||||
"Varsayılan olarak, yalnızca eşleşen bir e-posta adresine sahip bir kullanıcı bu sunucuyu kullanabilir. Kullanımını genişletmek için bir \"mail.default.from\" sistem parametresi ayarlamanız gerekir."
|
||||
"Varsayılan olarak, yalnızca eşleşen bir e-posta adresine sahip bir kullanıcı "
|
||||
"bu sunucuyu kullanabilir. Kullanımını genişletmek için bir "
|
||||
"\"mail.default.from\" sistem parametresi ayarlamanız gerekir."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -110,11 +119,25 @@ msgstr ""
|
|||
"İzinleri kabul etmek için Outlook oturum açma sayfasına yönlendirilirsiniz."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Posta sunucunuza geri dönün"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Geri dön"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -132,21 +155,13 @@ msgstr "Gelen Posta Sunucusu"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Outlook posta sunucusu için Yanlış Bağlantı Güvenliği %r. Lütfen bunu \"TLS "
|
||||
"Outlook posta sunucusu için Bağlantı Güvenliği Hatalı \"%s\". Lütfen \"TLS "
|
||||
"(STARTTLS)\" olarak ayarlayın."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Outlook Kimlik Bilgileri Yapılandırılmış mı?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
|
|
@ -160,10 +175,36 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Outlook posta sunucusunu yalnızca yönetici bağlayabilirsiniz."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "Eyvah, kimliğinizi doğrulayamadık. Lütfen daha sonra tekrar deneyin."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Eyvah, %(email_login)s adresinden göndermek için bir yetkilendirme "
|
||||
"oluşturuyorsunuz ancak adresiniz %(email_server)s. Adreslerinizin "
|
||||
"eşleştiğinden emin olun!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Giden E-posta Sunucusu Türü"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -204,37 +245,42 @@ msgstr "Outlook Yenileme Belirteci"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Lütfen Outlook kimlik bilgilerinizi yapılandırın."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Lütfen kullanmadan önce Outlook hesabınıza bağlanın."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Lütfen geçerli bir e-posta adresi girin."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Lütfen \"Kullanıcı Adı\" alanını Outlook/Office365 kullanıcı adınızla (e-"
|
||||
"posta adresiniz) doldurun. Bu, Outlook OAuthentication Token için kullanılan "
|
||||
"hesapla aynı olmalıdır."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Lütfen Outlook posta sunucusu %r için parola alanını boş bırakın. OAuth "
|
||||
"işlemi bunu gerektirmez"
|
||||
"Outlook posta sunucusu \"%s\" için lütfen parola alanını boş bırakın. OAuth "
|
||||
"süreci bunu gerektirmez"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -244,9 +290,8 @@ msgstr "İncele"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL sunucusu %r için gereklidir."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "\"%s\" sunucusu için SSL gereklidir."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -263,16 +308,6 @@ msgstr "Outlook uygulamanızın sırrı"
|
|||
msgid "Server Type"
|
||||
msgstr "Sunucu Türü"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Outlook hesabını bağlamak için genel ayarlarda Outlook API kimlik "
|
||||
"bilgilerinizi ayarlayın."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -283,6 +318,10 @@ msgstr "Outlook'tan yetkilendirme kodu oluşturmak için URL"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Bilinmeyen hata."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-08 19:18+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Підключіть ваш обліковий запис Outlook"
|
||||
"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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -38,30 +28,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Підключіть ваш обліковий запис Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Дійсний токен Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Дійсний токен Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Під час отримання токена доступу сталася помилка. %s"
|
||||
|
||||
|
|
@ -85,18 +95,20 @@ msgstr "Налаштування"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Підключіть свій обліковий запис Outlook до процесу автентифікації OAuth. \n"
|
||||
"За замовчуванням лише користувач із відповідною електронною адресою зможе використовувати цей сервер. Щоб розширити його використання, вам слід встановити системний параметр \"mail.default.from\"."
|
||||
"За замовчуванням лише користувач із відповідною електронною адресою зможе "
|
||||
"використовувати цей сервер. Щоб розширити його використання, вам слід "
|
||||
"встановити системний параметр \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -105,11 +117,25 @@ msgstr ""
|
|||
"Ви будете перенаправлені на сторінку входу в Outlook, щоб прийняти дозволи."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Поверніться до вашого поштового сервера"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Поверніться"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -127,20 +153,10 @@ msgstr "Вхідний поштовий сервер"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Неправильний захист підключення для поштового сервера Outlook. Будь ласка, "
|
||||
"встановіть його на \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Чи налаштовані облікові дані Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -155,10 +171,33 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Лише адміністратор може зв’язати поштовий сервер Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -199,22 +238,25 @@ msgstr "Токен оновлення Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Налаштуйте облікові дані Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
"Підключіться до вашого облікового запису Outlook перед його використанням."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -227,13 +269,10 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Залиште поле пароля порожнім для поштового сервера Outlook. Обробка OAuth "
|
||||
"цього не вимагає"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -243,9 +282,8 @@ msgstr "Читати більше"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL потрібен для сервера."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -262,16 +300,6 @@ msgstr "Секретний ключ вашого додатка Outlook"
|
|||
msgid "Server Type"
|
||||
msgstr "Тип сервера"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Налаштуйте облікові дані Outlook API у загальних налаштуваннях, щоб зв’язати"
|
||||
" обліковий запис Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -282,6 +310,10 @@ msgstr "URL-адреса для створення коду авторизаці
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Невідома помилка."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
|
|
|||
|
|
@ -1,274 +1,368 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <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: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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:38+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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
#, fuzzy
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Sozlamalarni tahrirlash\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "<i class=\"oi oi-arrow-right\"/> Outlook hisobingizni ulang"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' yoki "
|
||||
"microsoft_outlook_refresh_token emas\" class=\"badge text-bg-success\"> "
|
||||
"Outlook tokeni yaroqli </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' yoki "
|
||||
"microsoft_outlook_refresh_token emas\" class=\"badge text-bg-success\"> "
|
||||
"Outlook tokeni yaroqli </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
#, fuzzy
|
||||
msgid "Active"
|
||||
msgstr "Faol"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
msgstr "Kirish tokenini olishda xatolik yuz berdi. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
#, fuzzy
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
msgstr "Bilan autentifikatsiya qilish"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
#, fuzzy
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
msgstr "Autentifikatsiya URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
msgstr "Konfiguratsiya sozlamalari"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Outlook hisobingizni OAuth autentifikatsiya jarayoni orqali ulang. Odatda, "
|
||||
"faqat mos elektron pochta manziliga ega foydalanuvchi ushbu serverdan "
|
||||
"foydalana oladi. Undan foydalanishni kengaytirish uchun "
|
||||
"\"mail.default.from\" tizim parametrini o‘rnatishingiz kerak."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"OAuth yordamida shaxsiy Outlook hisobingizni ulang. Ruxsatlarni qabul "
|
||||
"qilish uchun Outlook kirish sahifasiga yo‘naltirilasiz."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Go back"
|
||||
msgstr "Orqaga qaytish"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
msgstr "Outlook ilovangiz ID raqami"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
#, fuzzy
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
msgstr "Kiruvchi pochta serveri"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
"Outlook pochta serveri \"%s\" uchun ulanish xavfsizligi noto‘g‘ri. Uni \"TLS "
|
||||
"(STARTTLS)\" ga o‘zgartiring."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
#, fuzzy
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
msgstr "Pochta serveri"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
#, fuzzy
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
msgstr "Microsoft Outlook aralashmasi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Outlook pochta serverini faqat administrator ulashi mumkin."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, fuzzy
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
"Kechirasiz, sizni autentifikatsiya qila olmadik. Iltimos, keyinroq qayta "
|
||||
"urinib ko‘ring."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Kechirasiz, siz %(email_login)s dan yuborish uchun ruxsat yaratmoqdasiz, "
|
||||
"lekin manzilingiz %(email_server)s. Manzillaringiz mos kelishini tekshiring!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
#, fuzzy
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "Chiquvchi pochta serveri turi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
#, fuzzy
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
#, fuzzy
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
msgstr "Outlook kirish tokeni"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
#, fuzzy
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
msgstr "Outlook kirish tokeni amal qilish muddati"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
#, fuzzy
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
msgstr "Outlook mijoz ID si"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
#, fuzzy
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
msgstr "Outlook mijoz siri"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
#, fuzzy
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
msgstr "Outlook OAuth autentifikatsiyasi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
#, fuzzy
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
msgstr "Outlook yangilash tokeni"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
msgstr "Foydalanishdan oldin Outlook hisobingizga ulaning."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, fuzzy
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "Iltimos, yaroqli elektron pochta manzilini kiriting."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"\"Foydalanuvchi nomi\" maydonini Outlook/Office365 foydalanuvchi nomingiz "
|
||||
"(elektron pochta manzilingiz) bilan to‘ldiring. Bu Outlook OAuthentication "
|
||||
"tokeni uchun ishlatiladigan hisob bilan bir xil bo‘lishi kerak."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Outlook pochta serveri \"%s\" uchun parol maydonini bo‘sh qoldiring. OAuth "
|
||||
"jarayoni buni talab qilmaydi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
#, fuzzy
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
msgstr "Ko‘proq o‘qish"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "\"%s\" serveri uchun SSL zarur"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
msgstr "Maxfiy kalit"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
msgstr "Outlook ilovangizning maxfiy kaliti"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
#, fuzzy
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
msgstr "Server turi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
#, fuzzy
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
msgstr "Outlook orqali avtorizatsiya kodini yaratish uchun URL manzil"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
msgstr "Noma'lum xato yuz berdi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
#, fuzzy
|
||||
msgid "User"
|
||||
msgstr "Foydalanuvchi"
|
||||
|
|
@ -1,36 +1,25 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Thin Tran <trvathin@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Duy BQ <duybq86@gmail.com>, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\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-12-03 12:34+0000\n"
|
||||
"Last-Translator: \"Thi Huong Nguyen (thng)\" <thng@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Kết nối tài khoản Outlook của bạn"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -40,24 +29,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"Chỉnh sửa cài đặt\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Kết nối tài khoản Outlook của bạn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook hợp lệ\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook hợp lệ\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Có một lỗi xảy ra khi lấy khóa xác thực quyền truy cập. %s"
|
||||
|
||||
|
|
@ -76,23 +91,25 @@ msgstr "URI xác thực"
|
|||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cấu hình"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"Kết nối tài khoản Outlook của bạn với quy trình xác thực OAuth.\n"
|
||||
"Theo mặc định, chỉ người dùng có địa chỉ email phù hợp mới có thể sử dụng máy chủ này. Để mở rộng khả năng sử dụng, bạn nên thiết lập tham số hệ thống \"mail.default.from\"."
|
||||
"Theo mặc định, chỉ người dùng có địa chỉ email phù hợp mới có thể sử dụng "
|
||||
"máy chủ này. Để mở rộng khả năng sử dụng, bạn nên thiết lập tham số hệ thống "
|
||||
"\"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -101,11 +118,25 @@ msgstr ""
|
|||
"Bạn sẽ được chuyển hướng đến trang đăng nhập Outlook để chấp nhận quyền."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Quay lại Mail server của bạn"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "Trở lại"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -123,20 +154,12 @@ msgstr "Máy chủ thư đến"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Bảo mật kết nối không chính xác cho máy chủ thư Outlook %r. Vui lòng đặt là "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Chứng thực Outlook đã được cấu hình"
|
||||
"Bảo mật kết nối không chính xác cho máy chủ thư Outlook “%s”. Vui lòng đặt "
|
||||
"là \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -151,10 +174,35 @@ msgstr "Mixin Microsoft Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Chỉ tài khoản Admin mới có thể liên kết một Mail server Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"Rất tiếc, bạn đang tạo uỷ quyền gửi từ %(email_login)s nhưng địa chỉ của bạn "
|
||||
"là %(email_server)s. Hãy đảm bảo hai địa chỉ khớp nhau!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -195,21 +243,24 @@ msgstr "Làm mới Khóa chức thực Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Hãy cấu hình chứng thực cho Outlook của bạn."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Vui lòng kết nối với tài khoản Outlook của bạn trước khi sử dụng."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
|
|
@ -222,12 +273,11 @@ msgstr ""
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr ""
|
||||
"Vui lòng để trống trường mật khẩu cho máy chủ thư Outlook %r. Quá trình "
|
||||
"Vui lòng để trống trường mật khẩu cho máy chủ thư Outlook “%s”. Quá trình "
|
||||
"OAuth không yêu cầu mật khẩu."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
|
|
@ -238,9 +288,8 @@ msgstr "Tìm hiểu thêm"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL được yêu cầu cho máy chủ %r."
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "SSL được yêu cầu cho máy chủ “%s”."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -257,16 +306,6 @@ msgstr "Mã bí mật ứng dụng Outlook của bạn"
|
|||
msgid "Server Type"
|
||||
msgstr "Kiểu máy chủ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Thiết lập thông tin xác thực API Outlook trong cài đặt chung để liên kết tài"
|
||||
" khoản Gmail."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -277,6 +316,23 @@ msgstr "Đường dẫn URL để tạo mã uỷ quyền từ Outlook"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Lỗi không xác định."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "Quay lại Mail server của bạn"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Chứng thực Outlook đã được cấu hình"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr ""
|
||||
#~ "Thiết lập thông tin xác thực API Outlook trong cài đặt chung để liên kết "
|
||||
#~ "tài khoản Gmail."
|
||||
|
|
|
|||
|
|
@ -1,35 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# Chloe Wang, 2023
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# "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 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Chloe Wang, 2023\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-11-08 17:54+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/microsoft_outlook/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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "连接您的Outlook账号"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,37 +28,57 @@ msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" 连接您的 Outlook 账号"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 令牌有效\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 令牌有效\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "有效"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "获取登入token时发生错误。%s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "认证以"
|
||||
msgstr "认证方式"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
|
|
@ -86,18 +95,19 @@ msgstr "配置设置"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"用OAuth身份验证过程连接你的Outlook账户。 \n"
|
||||
"默认情况下只有拥有匹配的电子邮件地址的用户才能使用这个服务器。为了扩大其使用范围,你应该设置一个 \"mail.default.from \"系统参数。"
|
||||
"默认情况下只有拥有匹配的电子邮件地址的用户才能使用这个服务器。为了扩大其使用"
|
||||
"范围,你应该设置一个 \"mail.default.from \"系统参数。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -106,11 +116,25 @@ msgstr ""
|
|||
"您将被重定向到Outlook登录页面以接受权限。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "返回您的邮件服务器"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "返回"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
|
@ -128,18 +152,10 @@ msgstr "收件服务器"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr "Outlook邮件服务器安全设置错误 %r。请设置为\"TLS (STARTTLS)\"。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Outlook安全凭证已配置"
|
||||
msgstr "Outlook 邮件服务器 %s的连线安全性设置不正确。请设置为 TLS (STARTTLS)。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
|
|
@ -154,10 +170,35 @@ msgstr "Microsoft Outlook Mixin"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "只有管理员才能连接Outlook邮件服务器。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr "糟糕,我们无法验证您的身份。请稍后再试。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
"哎呀,您创建的授权是从 %(email_login)s 发送的,但您的地址是 %"
|
||||
"(email_server)s。请确保地址匹配!"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr "外发邮件服务器类型"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -198,37 +239,39 @@ msgstr "Outlook 刷新令牌"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "请配置您的 Outlook 凭据。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "请在使用前连接您的Outlook帐户"
|
||||
msgstr "使用前请先连接 Outlook 帐户。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr "请输入有效的电子邮件地址。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"请在\"用户名\"一栏填写 Outlook/Office 365 用户名(电子邮件地址)。该账户应与 OAuthentication Token "
|
||||
"使用的账户一致。"
|
||||
"请在\"用户名\"一栏填写 Outlook/Office 365 用户名(电子邮件地址)。该账户应与 "
|
||||
"Outlook OAuthentication Token 使用的账户一致。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr "请将密码字段留空,以便将Outlook邮件服务器%r。OAuth 进程不需要它"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr "请将 Outlook 邮件服务器 %s 的密码字段留空。OAuth 流程不需要密码。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -238,9 +281,8 @@ msgstr "阅读更多"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "服务器%r需要SSL"
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "以下服务器需要 SSL:%s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -257,14 +299,6 @@ msgstr "您的Outlook应用程序的秘密"
|
|||
msgid "Server Type"
|
||||
msgstr "服务器类型"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr "在常规设置中设置 Outlook API 凭据以链接 Outlook 帐户。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -275,6 +309,21 @@ msgstr "用于从 Outlook 生成授权代码的 URL"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "未知错误."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "返回您的邮件服务器"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Outlook安全凭证已配置"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr "在常规设置中设置 Outlook API 凭据以链接 Outlook 帐户。"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Pak Wai Ho, 2023
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
# Wil Odoo, 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.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\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-11-08 19:02+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/microsoft_outlook/zh_Hant/>\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: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 連結您的Outlook帳戶"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
|
|
@ -39,30 +30,50 @@ msgstr "<i class=\"fa fa-cog\" title=\"編輯設定\"/>"
|
|||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" 連接您的 Outlook 賬戶"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"server_type != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 代碼有效\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"<span invisible=\"smtp_authentication != 'outlook' or not "
|
||||
"microsoft_outlook_refresh_token\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 代碼有效\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__active
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__active
|
||||
msgid "Active"
|
||||
msgstr "啟用"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "獲取登入代碼時發生錯誤。%s"
|
||||
|
||||
|
|
@ -86,18 +97,19 @@ msgstr "配置設定"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
"By default, only a user with a matching email address will be able to use "
|
||||
"this server. To extend its use, you should set a \"mail.default.from\" "
|
||||
"system parameter."
|
||||
msgstr ""
|
||||
"用OAuth身份驗證過程連接你的Outlook賬戶。 \n"
|
||||
"默認情況下只有擁有匹配的電子郵件地址的用戶才可使用這個服務器。為擴大其使用範圍,你應該設置一個 mail.default.from 系統參數。"
|
||||
"默認情況下只有擁有匹配的電子郵件地址的用戶才可使用這個服務器。為擴大其使用範"
|
||||
"圍,你應該設置一個 mail.default.from 系統參數。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
|
@ -106,19 +118,33 @@ msgstr ""
|
|||
"您將被重定向到Outlook登入頁面以接受權限。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "返回您的郵件服務器"
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back"
|
||||
msgstr "返回"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__id
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr "您的Outlook應用程式識別碼"
|
||||
msgstr "您的Outlook應用程式ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
|
|
@ -128,23 +154,16 @@ msgstr "收信伺服器"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"Incorrect Connection Security for Outlook mail server “%s”. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr "Outlook郵件伺服器安全設置錯誤 %r。請設置為 TLS (STARTTLS)。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Outlook 登入資訊是否已配置"
|
||||
msgstr ""
|
||||
"Outlook 郵件伺服器 %s 的連線安全性設定不正確。請設定為 TLS (STARTTLS)。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "信件伺服器"
|
||||
msgstr "郵件伺服器"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
|
|
@ -154,10 +173,33 @@ msgstr "Microsoft Outlook 混入程式"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "只有管理員才可連接 Outlook 郵件伺服器。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Oops, we could not authenticate you. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/controllers/main.py:0
|
||||
msgid ""
|
||||
"Oops, you're creating an authorization to send from %(email_login)s but your "
|
||||
"address is %(email_server)s. Make sure your addresses match!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_users__outgoing_mail_server_type
|
||||
msgid "Outgoing Mail Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__res_users__outgoing_mail_server_type__outlook
|
||||
msgid "Outlook"
|
||||
msgstr "Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
|
|
@ -198,37 +240,39 @@ msgstr "Outlook 更新代碼"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "請設定你的 Outlook 登入資訊。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "使用前請先連接 Outlook 帳戶。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"請在「用戶名稱」一欄填寫 Outlook/Office 365 用戶名稱(電子郵件地址)。該帳戶應與 Outlook OAuthentication "
|
||||
"代碼所使用的帳戶一致。"
|
||||
"請在「用戶名稱」一欄填寫 Outlook/Office 365 用戶名稱(電子郵件地址)。該帳戶"
|
||||
"應與 Outlook OAuthentication 代碼所使用的帳戶一致。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr "請將密碼欄位留空給 Outlook 郵件伺服器 %r。OAuth 的過程不需要它"
|
||||
"Please leave the password field empty for Outlook mail server “%s”. The "
|
||||
"OAuth process does not require it"
|
||||
msgstr "請將 Outlook 郵件伺服器 %s 的密碼欄位留空。OAuth 流程不需要密碼。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
|
|
@ -238,9 +282,8 @@ msgstr "閱讀更多"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "伺服器 %r 需要 SSL。"
|
||||
msgid "SSL is required for server “%s”."
|
||||
msgstr "以下伺服器需要 SSL:%s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
|
|
@ -257,14 +300,6 @@ msgstr "你的 Outlook 應用程式的秘密"
|
|||
msgid "Server Type"
|
||||
msgstr "伺服器類型"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr "在一般設定中,設置 Outlook API 登入資訊以連結 Outlook 帳戶。"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
|
|
@ -275,6 +310,21 @@ msgstr "從 Outlook 產生授權碼的網址"
|
|||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "未知錯誤"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#~ msgid "Go back to your mail server"
|
||||
#~ msgstr "返回您的郵件服務器"
|
||||
|
||||
#~ msgid "Is Outlook Credential Configured"
|
||||
#~ msgstr "Outlook 登入資訊是否已配置"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Setup your Outlook API credentials in the general settings to link a "
|
||||
#~ "Outlook account."
|
||||
#~ msgstr "在一般設定中,設置 Outlook API 登入資訊以連結 Outlook 帳戶。"
|
||||
|
|
|
|||
|
|
@ -6,3 +6,4 @@ from . import microsoft_outlook_mixin
|
|||
from . import fetchmail_server
|
||||
from . import ir_mail_server
|
||||
from . import res_config_settings
|
||||
from . import res_users
|
||||
|
|
|
|||
|
|
@ -23,17 +23,11 @@ class FetchmailServer(models.Model):
|
|||
'the permissions.')
|
||||
super(FetchmailServer, self - outlook_servers)._compute_server_type_info()
|
||||
|
||||
@api.depends('server_type')
|
||||
def _compute_is_microsoft_outlook_configured(self):
|
||||
outlook_servers = self.filtered(lambda server: server.server_type == 'outlook')
|
||||
(self - outlook_servers).is_microsoft_outlook_configured = False
|
||||
super(FetchmailServer, outlook_servers)._compute_is_microsoft_outlook_configured()
|
||||
|
||||
@api.constrains('server_type', 'is_ssl')
|
||||
def _check_use_microsoft_outlook_service(self):
|
||||
for server in self:
|
||||
if server.server_type == 'outlook' and not server.is_ssl:
|
||||
raise UserError(_('SSL is required for the server %r.', server.name))
|
||||
raise UserError(_('SSL is required for server “%s”.', server.name))
|
||||
|
||||
@api.onchange('server_type')
|
||||
def onchange_server_type(self):
|
||||
|
|
@ -46,9 +40,9 @@ class FetchmailServer(models.Model):
|
|||
self.microsoft_outlook_refresh_token = False
|
||||
self.microsoft_outlook_access_token = False
|
||||
self.microsoft_outlook_access_token_expiration = False
|
||||
super(FetchmailServer, self).onchange_server_type()
|
||||
super().onchange_server_type()
|
||||
|
||||
def _imap_login(self, connection):
|
||||
def _imap_login__(self, connection): # noqa: PLW3201
|
||||
"""Authenticate the IMAP connection.
|
||||
|
||||
If the mail server is Outlook, we use the OAuth2 authentication protocol.
|
||||
|
|
@ -59,7 +53,7 @@ class FetchmailServer(models.Model):
|
|||
connection.authenticate('XOAUTH2', lambda x: auth_string)
|
||||
connection.select('INBOX')
|
||||
else:
|
||||
super()._imap_login(connection)
|
||||
super()._imap_login__(connection)
|
||||
|
||||
def _get_connection_type(self):
|
||||
"""Return which connection must be used for this mail server (IMAP or POP).
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from odoo import _, api, fields, models
|
|||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class IrMailServer(models.Model):
|
||||
class IrMail_Server(models.Model):
|
||||
"""Add the Outlook OAuth authentication on the outgoing mail servers."""
|
||||
|
||||
_name = 'ir.mail_server'
|
||||
|
|
@ -19,19 +19,13 @@ class IrMailServer(models.Model):
|
|||
selection_add=[('outlook', 'Outlook OAuth Authentication')],
|
||||
ondelete={'outlook': 'set default'})
|
||||
|
||||
@api.depends('smtp_authentication')
|
||||
def _compute_is_microsoft_outlook_configured(self):
|
||||
outlook_servers = self.filtered(lambda server: server.smtp_authentication == 'outlook')
|
||||
(self - outlook_servers).is_microsoft_outlook_configured = False
|
||||
super(IrMailServer, outlook_servers)._compute_is_microsoft_outlook_configured()
|
||||
|
||||
def _compute_smtp_authentication_info(self):
|
||||
outlook_servers = self.filtered(lambda server: server.smtp_authentication == 'outlook')
|
||||
outlook_servers.smtp_authentication_info = _(
|
||||
'Connect your Outlook account with the OAuth Authentication process. \n'
|
||||
'By default, only a user with a matching email address will be able to use this server. '
|
||||
'To extend its use, you should set a "mail.default.from" system parameter.')
|
||||
super(IrMailServer, self - outlook_servers)._compute_smtp_authentication_info()
|
||||
super(IrMail_Server, self - outlook_servers)._compute_smtp_authentication_info()
|
||||
|
||||
@api.constrains('smtp_authentication', 'smtp_pass', 'smtp_encryption', 'smtp_user')
|
||||
def _check_use_microsoft_outlook_service(self):
|
||||
|
|
@ -39,12 +33,12 @@ class IrMailServer(models.Model):
|
|||
for server in outlook_servers:
|
||||
if server.smtp_pass:
|
||||
raise UserError(_(
|
||||
'Please leave the password field empty for Outlook mail server %r. '
|
||||
'Please leave the password field empty for Outlook mail server “%s”. '
|
||||
'The OAuth process does not require it', server.name))
|
||||
|
||||
if server.smtp_encryption != 'starttls':
|
||||
raise UserError(_(
|
||||
'Incorrect Connection Security for Outlook mail server %r. '
|
||||
'Incorrect Connection Security for Outlook mail server “%s”. '
|
||||
'Please set it to "TLS (STARTTLS)".', server.name))
|
||||
|
||||
if not server.smtp_user:
|
||||
|
|
@ -77,11 +71,22 @@ class IrMailServer(models.Model):
|
|||
if self.smtp_authentication == 'outlook':
|
||||
self.from_filter = self.smtp_user
|
||||
|
||||
def _smtp_login(self, connection, smtp_user, smtp_password):
|
||||
def _smtp_login__(self, connection, smtp_user, smtp_password): # noqa: PLW3201
|
||||
if len(self) == 1 and self.smtp_authentication == 'outlook':
|
||||
auth_string = self._generate_outlook_oauth2_string(smtp_user)
|
||||
oauth_param = base64.b64encode(auth_string.encode()).decode()
|
||||
connection.ehlo()
|
||||
connection.docmd('AUTH', f'XOAUTH2 {oauth_param}')
|
||||
else:
|
||||
super()._smtp_login(connection, smtp_user, smtp_password)
|
||||
super()._smtp_login__(connection, smtp_user, smtp_password)
|
||||
|
||||
def _get_personal_mail_servers_limit(self):
|
||||
"""Return the number of email we can send in 1 minutes for this outgoing server.
|
||||
|
||||
0 fallbacks to 30 to avoid blocking servers.
|
||||
"""
|
||||
if self.smtp_authentication == 'outlook':
|
||||
# Outlook flag way faster email as spam, so we set a lower limit
|
||||
return int(self.env['ir.config_parameter'].sudo()
|
||||
.get_param('mail.server.personal.limit.minutes_outlook')) or 10
|
||||
return super()._get_personal_mail_servers_limit()
|
||||
|
|
|
|||
|
|
@ -6,24 +6,30 @@ import logging
|
|||
import time
|
||||
import requests
|
||||
|
||||
from werkzeug.urls import url_encode, url_join
|
||||
from werkzeug.urls import url_encode
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo import _, api, fields, models, release
|
||||
from odoo.exceptions import AccessError, UserError
|
||||
from odoo.tools.misc import hmac
|
||||
from odoo.tools import hmac, email_normalize
|
||||
from odoo.tools.urls import urljoin as url_join
|
||||
from odoo.addons.google_gmail.tools import get_iap_error_message
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
OUTLOOK_TOKEN_REQUEST_TIMEOUT = 5
|
||||
OUTLOOK_TOKEN_VALIDITY_THRESHOLD = OUTLOOK_TOKEN_REQUEST_TIMEOUT + 5
|
||||
|
||||
|
||||
class MicrosoftOutlookMixin(models.AbstractModel):
|
||||
|
||||
_name = 'microsoft.outlook.mixin'
|
||||
|
||||
_description = 'Microsoft Outlook Mixin'
|
||||
|
||||
_OUTLOOK_SCOPE = None
|
||||
_DEFAULT_OUTLOOK_IAP_ENDPOINT = 'https://outlook.api.odoo.com'
|
||||
|
||||
active = fields.Boolean(default=True)
|
||||
|
||||
is_microsoft_outlook_configured = fields.Boolean('Is Outlook Credential Configured',
|
||||
compute='_compute_is_microsoft_outlook_configured')
|
||||
microsoft_outlook_refresh_token = fields.Char(string='Outlook Refresh Token',
|
||||
groups='base.group_system', copy=False)
|
||||
microsoft_outlook_access_token = fields.Char(string='Outlook Access Token',
|
||||
|
|
@ -33,20 +39,15 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
microsoft_outlook_uri = fields.Char(compute='_compute_outlook_uri', string='Authentication URI',
|
||||
help='The URL to generate the authorization code from Outlook', groups='base.group_system')
|
||||
|
||||
def _compute_is_microsoft_outlook_configured(self):
|
||||
Config = self.env['ir.config_parameter'].sudo()
|
||||
microsoft_outlook_client_id = Config.get_param('microsoft_outlook_client_id')
|
||||
microsoft_outlook_client_secret = Config.get_param('microsoft_outlook_client_secret')
|
||||
self.is_microsoft_outlook_configured = microsoft_outlook_client_id and microsoft_outlook_client_secret
|
||||
|
||||
@api.depends('is_microsoft_outlook_configured')
|
||||
def _compute_outlook_uri(self):
|
||||
Config = self.env['ir.config_parameter'].sudo()
|
||||
base_url = self.get_base_url()
|
||||
microsoft_outlook_client_id = Config.get_param('microsoft_outlook_client_id')
|
||||
microsoft_outlook_client_secret = Config.get_param('microsoft_outlook_client_secret')
|
||||
is_configured = microsoft_outlook_client_id and microsoft_outlook_client_secret
|
||||
|
||||
for record in self:
|
||||
if not record.id or not record.is_microsoft_outlook_configured:
|
||||
if not is_configured:
|
||||
record.microsoft_outlook_uri = False
|
||||
continue
|
||||
|
||||
|
|
@ -56,12 +57,12 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
'redirect_uri': url_join(base_url, '/microsoft_outlook/confirm'),
|
||||
'response_mode': 'query',
|
||||
# offline_access is needed to have the refresh_token
|
||||
'scope': 'offline_access %s' % self._OUTLOOK_SCOPE,
|
||||
'scope': f'openid email offline_access https://outlook.office.com/User.read {self._OUTLOOK_SCOPE}',
|
||||
'state': json.dumps({
|
||||
'model': record._name,
|
||||
'id': record.id,
|
||||
'csrf_token': record._get_outlook_csrf_token(),
|
||||
})
|
||||
}),
|
||||
}))
|
||||
|
||||
def open_microsoft_outlook_uri(self):
|
||||
|
|
@ -73,22 +74,71 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
"""
|
||||
self.ensure_one()
|
||||
|
||||
if not self.env.user.has_group('base.group_system'):
|
||||
if not self.env.is_admin():
|
||||
raise AccessError(_('Only the administrator can link an Outlook mail server.'))
|
||||
|
||||
if not self.is_microsoft_outlook_configured:
|
||||
email_normalized = email_normalize(self[self._email_field])
|
||||
|
||||
if not email_normalized:
|
||||
raise UserError(_('Please enter a valid email address.'))
|
||||
|
||||
Config = self.env['ir.config_parameter'].sudo()
|
||||
microsoft_outlook_client_id = Config.get_param('microsoft_outlook_client_id')
|
||||
microsoft_outlook_client_secret = Config.get_param('microsoft_outlook_client_secret')
|
||||
is_configured = microsoft_outlook_client_id and microsoft_outlook_client_secret
|
||||
|
||||
if not is_configured: # use IAP (see '/microsoft_outlook/iap_confirm')
|
||||
if release.version_info[-1] != 'e':
|
||||
raise UserError(_('Please configure your Outlook credentials.'))
|
||||
|
||||
outlook_iap_endpoint = self.env['ir.config_parameter'].sudo().get_param(
|
||||
'mail.server.outlook.iap.endpoint',
|
||||
self._DEFAULT_OUTLOOK_IAP_ENDPOINT,
|
||||
)
|
||||
db_uuid = self.env['ir.config_parameter'].sudo().get_param('database.uuid')
|
||||
|
||||
# final callback URL that will receive the token from IAP
|
||||
callback_params = url_encode({
|
||||
'model': self._name,
|
||||
'rec_id': self.id,
|
||||
'csrf_token': self._get_outlook_csrf_token(),
|
||||
})
|
||||
callback_url = url_join(self.get_base_url(), f'/microsoft_outlook/iap_confirm?{callback_params}')
|
||||
|
||||
try:
|
||||
response = requests.get(
|
||||
url_join(outlook_iap_endpoint, '/api/mail_oauth/1/outlook'),
|
||||
params={'db_uuid': db_uuid, 'callback_url': callback_url},
|
||||
timeout=OUTLOOK_TOKEN_REQUEST_TIMEOUT)
|
||||
response.raise_for_status()
|
||||
except requests.exceptions.RequestException as e:
|
||||
_logger.error('Can not contact IAP: %s.', e)
|
||||
raise UserError(_('Oops, we could not authenticate you. Please try again later.'))
|
||||
|
||||
response = response.json()
|
||||
if 'error' in response:
|
||||
self._raise_iap_error(response['error'])
|
||||
|
||||
# URL on IAP that will redirect to Outlook login page
|
||||
microsoft_outlook_uri = response['url']
|
||||
|
||||
else:
|
||||
microsoft_outlook_uri = self.microsoft_outlook_uri
|
||||
|
||||
if not microsoft_outlook_uri:
|
||||
raise UserError(_('Please configure your Outlook credentials.'))
|
||||
|
||||
return {
|
||||
'type': 'ir.actions.act_url',
|
||||
'url': self.microsoft_outlook_uri,
|
||||
'url': microsoft_outlook_uri,
|
||||
'target': 'self',
|
||||
}
|
||||
|
||||
def _fetch_outlook_refresh_token(self, authorization_code):
|
||||
"""Request the refresh token and the initial access token from the authorization code.
|
||||
|
||||
:return:
|
||||
refresh_token, access_token, access_token_expiration
|
||||
refresh_token, access_token, id_token, access_token_expiration
|
||||
"""
|
||||
response = self._fetch_outlook_token('authorization_code', code=authorization_code)
|
||||
return (
|
||||
|
|
@ -103,10 +153,17 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
:return:
|
||||
access_token, access_token_expiration
|
||||
"""
|
||||
Config = self.env['ir.config_parameter'].sudo()
|
||||
microsoft_outlook_client_id = Config.get_param('microsoft_outlook_client_id')
|
||||
microsoft_outlook_client_secret = Config.get_param('microsoft_outlook_client_secret')
|
||||
if not microsoft_outlook_client_id or not microsoft_outlook_client_secret:
|
||||
return self._fetch_outlook_access_token_iap(refresh_token)
|
||||
|
||||
response = self._fetch_outlook_token('refresh_token', refresh_token=refresh_token)
|
||||
return (
|
||||
response['refresh_token'],
|
||||
response['access_token'],
|
||||
response['id_token'],
|
||||
int(time.time()) + int(response['expires_in']),
|
||||
)
|
||||
|
||||
|
|
@ -128,12 +185,12 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
data={
|
||||
'client_id': microsoft_outlook_client_id,
|
||||
'client_secret': microsoft_outlook_client_secret,
|
||||
'scope': 'offline_access %s' % self._OUTLOOK_SCOPE,
|
||||
'scope': f'openid email offline_access https://outlook.office.com/User.read {self._OUTLOOK_SCOPE}',
|
||||
'redirect_uri': url_join(base_url, '/microsoft_outlook/confirm'),
|
||||
'grant_type': grant_type,
|
||||
**values,
|
||||
},
|
||||
timeout=10,
|
||||
timeout=OUTLOOK_TOKEN_REQUEST_TIMEOUT,
|
||||
)
|
||||
|
||||
if not response.ok:
|
||||
|
|
@ -145,22 +202,57 @@ class MicrosoftOutlookMixin(models.AbstractModel):
|
|||
|
||||
return response.json()
|
||||
|
||||
def _fetch_outlook_access_token_iap(self, refresh_token):
|
||||
"""Fetch the access token using IAP.
|
||||
|
||||
Make a HTTP request to IAP, that will make a HTTP request
|
||||
to the Outlook API and give us the result.
|
||||
|
||||
:return:
|
||||
access_token, access_token_expiration
|
||||
"""
|
||||
outlook_iap_endpoint = self.env['ir.config_parameter'].sudo().get_param(
|
||||
'mail.server.outlook.iap.endpoint',
|
||||
self.env['microsoft.outlook.mixin']._DEFAULT_OUTLOOK_IAP_ENDPOINT,
|
||||
)
|
||||
db_uuid = self.env['ir.config_parameter'].sudo().get_param('database.uuid')
|
||||
|
||||
response = requests.get(
|
||||
url_join(outlook_iap_endpoint, '/api/mail_oauth/1/outlook_access_token'),
|
||||
params={'refresh_token': refresh_token, 'db_uuid': db_uuid},
|
||||
timeout=OUTLOOK_TOKEN_REQUEST_TIMEOUT,
|
||||
)
|
||||
|
||||
if not response.ok:
|
||||
_logger.error('Can not contact IAP: %s.', response.text)
|
||||
raise UserError(_('Oops, we could not authenticate you. Please try again later.'))
|
||||
|
||||
response = response.json()
|
||||
if 'error' in response:
|
||||
self._raise_iap_error(response['error'])
|
||||
|
||||
return response
|
||||
|
||||
def _raise_iap_error(self, error):
|
||||
raise UserError(get_iap_error_message(self.env, error))
|
||||
|
||||
def _generate_outlook_oauth2_string(self, login):
|
||||
"""Generate a OAuth2 string which can be used for authentication.
|
||||
|
||||
:param user: Email address of the Outlook account to authenticate
|
||||
:param login: Email address of the Outlook account to authenticate
|
||||
:return: The SASL argument for the OAuth2 mechanism.
|
||||
"""
|
||||
self.ensure_one()
|
||||
now_timestamp = int(time.time())
|
||||
if not self.microsoft_outlook_access_token \
|
||||
or not self.microsoft_outlook_access_token_expiration \
|
||||
or self.microsoft_outlook_access_token_expiration < now_timestamp:
|
||||
or self.microsoft_outlook_access_token_expiration - OUTLOOK_TOKEN_VALIDITY_THRESHOLD < now_timestamp:
|
||||
if not self.microsoft_outlook_refresh_token:
|
||||
raise UserError(_('Please connect with your Outlook account before using it.'))
|
||||
(
|
||||
self.microsoft_outlook_refresh_token,
|
||||
self.microsoft_outlook_access_token,
|
||||
_id_token,
|
||||
self.microsoft_outlook_access_token_expiration,
|
||||
) = self._fetch_outlook_access_token(self.microsoft_outlook_refresh_token)
|
||||
_logger.info(
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = "res.users"
|
||||
|
||||
outgoing_mail_server_type = fields.Selection(
|
||||
selection_add=[("outlook", "Outlook")],
|
||||
ondelete={"outlook": "set default"},
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _get_mail_server_values(self, server_type):
|
||||
values = super()._get_mail_server_values(server_type)
|
||||
if server_type == "outlook":
|
||||
values |= {
|
||||
"smtp_host": "smtp-mail.outlook.com",
|
||||
"smtp_authentication": "outlook",
|
||||
}
|
||||
return values
|
||||
|
||||
@api.model
|
||||
def _get_mail_server_setup_end_action(self, smtp_server):
|
||||
if smtp_server.smtp_authentication == 'outlook':
|
||||
return smtp_server.sudo().open_microsoft_outlook_uri()
|
||||
return super()._get_mail_server_setup_end_action(smtp_server)
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.1 KiB |
|
|
@ -1,51 +1 @@
|
|||
<?xml version="1.0" ?><svg id="Capa_1" style="enable-background:new 0 0 128 128;" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">
|
||||
.st0{fill:#21A365;}
|
||||
.st1{fill:#107C41;}
|
||||
.st2{fill:#185B37;}
|
||||
.st3{fill:#33C481;}
|
||||
.st4{fill:#17864C;}
|
||||
.st5{fill:#FFFFFF;}
|
||||
.st6{fill:#036C70;}
|
||||
.st7{fill:#1A9BA1;}
|
||||
.st8{fill:#37C6D0;}
|
||||
.st9{fill:#04878B;}
|
||||
.st10{fill:#4F59CA;}
|
||||
.st11{fill:#7B82EA;}
|
||||
.st12{fill:#4C53BB;}
|
||||
.st13{fill:#0F78D5;}
|
||||
.st14{fill:#29A7EB;}
|
||||
.st15{fill:#0358A8;}
|
||||
.st16{fill:#0F79D6;}
|
||||
.st17{fill:#038387;}
|
||||
.st18{fill:#048A8E;}
|
||||
.st19{fill:#C8421D;}
|
||||
.st20{fill:#FF8F6A;}
|
||||
.st21{fill:#ED6B47;}
|
||||
.st22{fill:#891323;}
|
||||
.st23{fill:#AF2131;}
|
||||
.st24{fill:#C94E60;}
|
||||
.st25{fill:#E08195;}
|
||||
.st26{fill:#B42839;}
|
||||
.st27{fill:#0464B8;}
|
||||
.st28{fill:#0377D4;}
|
||||
.st29{fill:#4FD8FF;}
|
||||
.st30{fill:#1681D7;}
|
||||
.st31{fill:#0178D4;}
|
||||
.st32{fill:#042071;}
|
||||
.st33{fill:#168FDE;}
|
||||
.st34{fill:#CA64EA;}
|
||||
.st35{fill:#7E1FAF;}
|
||||
.st36{fill:#AE4BD5;}
|
||||
.st37{fill:#9332BF;}
|
||||
.st38{fill:#7719AA;}
|
||||
.st39{fill:#0078D4;}
|
||||
.st40{fill:#1490DF;}
|
||||
.st41{fill:#0364B8;}
|
||||
.st42{fill:#28A8EA;}
|
||||
.st43{fill:#41A5ED;}
|
||||
.st44{fill:#2C7BD5;}
|
||||
.st45{fill:#195ABE;}
|
||||
.st46{fill:#103E91;}
|
||||
.st47{fill:#2166C3;}
|
||||
.st48{opacity:0.2;}
|
||||
</style><g><path class="st27" d="M120.2,22.8H34.2V9.1C34.2,6.8,36,5,38.2,5h77.9c2.3,0,4.1,1.8,4.1,4.1V22.8z"/><rect class="st28" height="26.6" width="28.7" x="34.2" y="22.8"/><rect class="st14" height="26.6" width="28.7" x="62.9" y="22.8"/><rect class="st29" height="26.6" width="28.7" x="91.6" y="22.8"/><rect class="st30" height="26.6" width="28.7" x="34.2" y="49.4"/><rect class="st31" height="26.6" width="28.7" x="62.9" y="49.4"/><rect class="st14" height="26.6" width="28.7" x="91.6" y="49.4"/><rect class="st27" height="26.6" width="28.7" x="62.9" y="75.9"/><rect class="st30" height="26.6" width="28.7" x="91.6" y="75.9"/></g><path class="st32" d="M126.9,69.1l-6.6,3.9V61.8l6.5,3.6C128.3,66.1,128.3,68.2,126.9,69.1z"/><path class="st33" d="M126.9,69.1l-0.6,0.4l0,0l-0.7,0.4l-5.3,3.1v-0.1l-88.4,50.6h89.1c3.8,0,6.8-3.1,6.8-6.8l0.1-49.4 C128,67.9,127.6,68.7,126.9,69.1z"/><g><path class="st14" d="M122,123.5H32.8c-3.8,0-6.8-3.1-6.8-6.8V68.5L122,123.5z"/></g><path class="st30" d="M59,96.5h-53c-3.5,0-6.4-2.9-6.4-6.4V37.9c0-3.5,2.9-6.4,6.4-6.4h53c3.5,0,6.4,2.9,6.4,6.4v52.2 C65.4,93.6,62.6,96.5,59,96.5z"/><g><path class="st5" d="M32.5,82.9c-10.3,0-16.8-7.8-16.8-18.2c0-11,7.1-18.8,17.3-18.8c10.6,0,16.8,7.9,16.8,18.1 C49.9,76.1,42.5,82.9,32.5,82.9L32.5,82.9z M32.9,77.7c6.4,0,10-5.9,10-13.4c0-6.8-3.4-13.1-10-13.1s-10.1,6.2-10.1,13.4 S26.4,77.7,32.9,77.7L32.9,77.7z"/></g><path class="st48" d="M65.5,37.3c0,0.2,0,0.4,0,0.6v52.2c0,3.5-2.9,6.4-6.4,6.4H26v5.7h38.4c3.5,0,6.4-2.9,6.4-6.4V43.6 C70.8,40.4,68.5,37.7,65.5,37.3z"/></svg>
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M46 26.475a.936.936 0 0 0-.448-.804h-.005l-.017-.01-14.554-8.6a1.956 1.956 0 0 0-2.182 0l-14.553 8.6-.018.01a.946.946 0 0 0 .023 1.621l14.553 8.6a1.956 1.956 0 0 0 2.182 0l14.554-8.6a.935.935 0 0 0 .465-.817Z" fill="#0A2767"/><path d="M15.938 20.733h9.55v8.74h-9.55v-8.74Zm28.109-8.883V7.852A1.813 1.813 0 0 0 42.276 6H17.492a1.813 1.813 0 0 0-1.77 1.852v3.998l14.65 3.9 13.675-3.9Z" fill="#0364B8"/><path d="M15.72 11.85h9.768v8.775h-9.767V11.85Z" fill="#0078D4"/><path d="M35.256 11.85h-9.768v8.775l9.768 8.775h8.79v-8.775l-8.79-8.775Z" fill="#28A8EA"/><path d="M25.488 20.625h9.768V29.4h-9.768v-8.775Z" fill="#0078D4"/><path d="M25.488 29.4h9.768v8.775h-9.768V29.4Z" fill="#0364B8"/><path d="M15.938 29.472h9.55v7.944h-9.55v-7.944Z" fill="#14447D"/><path d="M35.256 29.4h8.79v8.775h-8.79V29.4Z" fill="#0078D4"/><path d="m45.553 27.238-.019.01-14.553 8.17a2.032 2.032 0 0 1-.984.304l-.796-.463a1.99 1.99 0 0 1-.195-.112l-14.75-8.403h-.006l-.482-.269v16.54A2 2 0 0 0 15.783 45h28.233c.017 0 .032-.008.05-.008.233-.015.463-.063.683-.142.095-.04.187-.088.274-.142.066-.038.178-.118.178-.118.5-.37.797-.954.8-1.575v-16.54a.877.877 0 0 1-.448.763Z" fill="url(#o_icon_microsoft_outlook__a)"/><path opacity=".5" d="M45.219 26.41v1.014L30 37.882 14.246 26.751a.01.01 0 0 0-.01-.01l-1.445-.868v-.73l.596-.01 1.26.72.03.01.107.069s14.807 8.434 14.846 8.453l.567.332c.048-.02.097-.04.156-.059.03-.02 14.7-8.258 14.7-8.258l.166.01Z" fill="#0A2767"/><path d="m45.553 27.238-.019.011-14.553 8.17a2.044 2.044 0 0 1-2.182 0l-14.554-8.17-.017-.01a.877.877 0 0 1-.46-.764v16.54A2 2 0 0 0 15.78 45h28.205A2 2 0 0 0 46 43.015v-16.54a.877.877 0 0 1-.447.763Z" fill="#1490DF"/><path opacity=".1" d="m31.193 35.299-.218.122a2.025 2.025 0 0 1-.963.313l5.537 6.536 9.659 2.323c.265-.2.475-.462.612-.763L31.193 35.3Z"/><path opacity=".05" d="m32.18 34.745-1.205.676a2.027 2.027 0 0 1-.963.313l2.594 7.14L45.21 44.59a1.97 1.97 0 0 0 .79-1.575v-.214l-13.82-8.056Z"/><path d="M15.809 45h28.174c.434.002.857-.134 1.206-.39L29.2 35.26a1.977 1.977 0 0 1-.195-.111l-14.75-8.403h-.006l-.481-.27v16.482A2.042 2.042 0 0 0 15.809 45Z" fill="#28A8EA"/><path opacity=".1" d="M27.442 15.587v20.797a1.792 1.792 0 0 1-1.123 1.657c-.21.09-.436.137-.665.137H13.768V14.775h1.953V13.8h9.934a1.793 1.793 0 0 1 1.787 1.787Z"/><path opacity=".2" d="M26.465 16.562V37.36c.003.235-.047.468-.146.682a1.78 1.78 0 0 1-1.641 1.109h-10.91V14.775h10.91c.283-.003.563.068.81.205.6.3.977.913.977 1.582Z"/><path opacity=".2" d="M26.465 16.562V35.41a1.801 1.801 0 0 1-1.787 1.79h-10.91V14.776h10.91c.283-.003.563.068.81.205.6.3.977.913.977 1.582Z"/><path opacity=".2" d="M25.488 16.562V35.41a1.795 1.795 0 0 1-1.787 1.79h-9.933V14.776H23.7c.988 0 1.788.8 1.787 1.786v.001Z"/><path d="M5.79 14.775h17.908c.989 0 1.79.8 1.79 1.787v17.876c0 .987-.801 1.787-1.79 1.787H5.79c-.988 0-1.79-.8-1.79-1.787V16.562c0-.987.802-1.787 1.79-1.787Z" fill="url(#o_icon_microsoft_outlook__b)"/><path d="M9.596 22.27a5.202 5.202 0 0 1 2.045-2.255 6.191 6.191 0 0 1 3.25-.813 5.762 5.762 0 0 1 3.007.771 5.16 5.16 0 0 1 1.99 2.155 6.94 6.94 0 0 1 .697 3.169 7.33 7.33 0 0 1-.718 3.315 5.28 5.28 0 0 1-2.05 2.23 5.992 5.992 0 0 1-3.12.792 5.89 5.89 0 0 1-3.074-.78 5.236 5.236 0 0 1-2.016-2.16 6.779 6.779 0 0 1-.705-3.13 7.528 7.528 0 0 1 .694-3.293Zm2.18 5.295a3.375 3.375 0 0 0 1.15 1.484 3.01 3.01 0 0 0 1.798.54 3.152 3.152 0 0 0 1.918-.558c.51-.375.899-.89 1.118-1.484a5.75 5.75 0 0 0 .356-2.07 6.289 6.289 0 0 0-.336-2.096 3.314 3.314 0 0 0-1.082-1.546 2.975 2.975 0 0 0-1.902-.585 3.104 3.104 0 0 0-1.839.545 3.404 3.404 0 0 0-1.172 1.496 5.937 5.937 0 0 0-.008 4.276v-.002Z" fill="#fff"/><path d="M35.256 11.85h8.79v8.775h-8.79V11.85Z" fill="#50D9FF"/><defs><linearGradient id="o_icon_microsoft_outlook__a" x1="29.884" y1="26.475" x2="29.884" y2="45" gradientUnits="userSpaceOnUse"><stop stop-color="#35B8F1"/><stop offset="1" stop-color="#28A8EA"/></linearGradient><linearGradient id="o_icon_microsoft_outlook__b" x1="7.733" y1="13.378" x2="21.718" y2="37.643" gradientUnits="userSpaceOnUse"><stop stop-color="#1784D9"/><stop offset=".5" stop-color="#107AD5"/><stop offset="1" stop-color="#0A63C9"/></linearGradient></defs></svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
|
|
@ -11,7 +11,7 @@ from odoo.tests.common import TransactionCase
|
|||
|
||||
class TestFetchmailOutlook(TransactionCase):
|
||||
|
||||
@patch('odoo.addons.mail.models.fetchmail.IMAP4_SSL')
|
||||
@patch('odoo.addons.mail.models.fetchmail.OdooIMAP4_SSL')
|
||||
def test_connect(self, mock_imap):
|
||||
"""Test that the connect method will use the right
|
||||
authentication method with the right arguments.
|
||||
|
|
@ -29,7 +29,7 @@ class TestFetchmailOutlook(TransactionCase):
|
|||
'is_ssl': True,
|
||||
})
|
||||
|
||||
mail_server.connect()
|
||||
mail_server._connect__()
|
||||
|
||||
mock_connection.authenticate.assert_called_once_with('XOAUTH2', ANY)
|
||||
args = mock_connection.authenticate.call_args[0]
|
||||
|
|
|
|||
|
|
@ -7,33 +7,24 @@
|
|||
<field name="inherit_id" ref="mail.view_email_server_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="user" position="after">
|
||||
<field name="is_microsoft_outlook_configured" invisible="1"/>
|
||||
<field name="microsoft_outlook_refresh_token" invisible="1"/>
|
||||
<field name="microsoft_outlook_access_token" invisible="1"/>
|
||||
<field name="microsoft_outlook_access_token_expiration" invisible="1"/>
|
||||
<div attrs="{'invisible': [('server_type', '!=', 'outlook')]}"
|
||||
class="d-flex flex-row align-items-center" colspan="2">
|
||||
<span attrs="{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}"
|
||||
<div invisible="server_type != 'outlook'"
|
||||
class="d-flex flex-row align-items-center" colspan="2"
|
||||
groups="base.group_system">
|
||||
<span invisible="server_type != 'outlook' or not microsoft_outlook_refresh_token"
|
||||
class="badge text-bg-success">
|
||||
Outlook Token Valid
|
||||
</span>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '!=', False)]}">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
invisible="server_type != 'outlook' or microsoft_outlook_refresh_token">
|
||||
<i class="oi oi-arrow-right"/>
|
||||
Connect your Outlook account
|
||||
</button>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0 ms-2"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}">
|
||||
invisible="server_type != 'outlook' or not microsoft_outlook_refresh_token">
|
||||
<i class="fa fa-cog" title="Edit Settings"/>
|
||||
</button>
|
||||
<button class="alert alert-warning d-block mt-2 text-start"
|
||||
icon="fa-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
attrs="{'invisible': ['|', ('is_microsoft_outlook_configured', '=', True), ('server_type', '!=', 'outlook')]}">
|
||||
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</field>
|
||||
|
|
|
|||
|
|
@ -5,41 +5,30 @@
|
|||
<field name="model">ir.mail_server</field>
|
||||
<field name="inherit_id" ref="base.ir_mail_server_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="smtp_user" position="after">
|
||||
<field name="is_microsoft_outlook_configured" invisible="1"/>
|
||||
<field name="microsoft_outlook_refresh_token" invisible="1"/>
|
||||
<field name="microsoft_outlook_access_token" invisible="1"/>
|
||||
<field name="microsoft_outlook_access_token_expiration" invisible="1"/>
|
||||
<div attrs="{'invisible': [('smtp_authentication', '!=', 'outlook')]}"
|
||||
class="d-flex flex-row align-items-center" colspan="8">
|
||||
<span attrs="{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}"
|
||||
<field name="smtp_ssl_private_key" position="after">
|
||||
<div invisible="smtp_authentication != 'outlook'"
|
||||
class="d-flex flex-row align-items-center"
|
||||
colspan="2"
|
||||
groups="base.group_system">
|
||||
<span invisible="smtp_authentication != 'outlook' or not microsoft_outlook_refresh_token"
|
||||
class="badge text-bg-success">
|
||||
Outlook Token Valid
|
||||
</span>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '!=', False)]}">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
invisible="smtp_authentication != 'outlook' or microsoft_outlook_refresh_token">
|
||||
<i class="oi oi-arrow-right"/>
|
||||
Connect your Outlook account
|
||||
</button>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0 ms-2"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}">
|
||||
invisible="smtp_authentication != 'outlook' or not microsoft_outlook_refresh_token">
|
||||
<i class="fa fa-cog" title="Edit Settings"/>
|
||||
</button>
|
||||
<button class="alert alert-warning d-block mt-2 text-start"
|
||||
icon="fa-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
attrs="{'invisible': ['|', ('is_microsoft_outlook_configured', '=', True), ('smtp_authentication', '!=', 'outlook')]}">
|
||||
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
<field name="smtp_authentication_info" position="after">
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/email_communication/email_servers.html?highlight=outgoing email server#use-a-default-from-email-address"
|
||||
attrs="{'invisible': [('smtp_authentication', '!=', 'outlook')]}" target="_blank">
|
||||
Read More
|
||||
</a>
|
||||
<widget invisible="smtp_authentication != 'outlook'" name="documentation_link" path="/applications/general/email_communication/email_servers.html?highlight=outgoing email server#use-a-default-from-email-address" label="Read More"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
<t t-call-assets="web.assets_frontend" t-js="false"/>
|
||||
<div class="py-5">
|
||||
<div class="alert alert-warning w-50 mx-auto" role="alert">
|
||||
<t t-esc="error"/>
|
||||
<t t-out="error"/>
|
||||
<br/>
|
||||
<a t-attf-href="/web?#id=#{rec_id}&model=#{model_name}&view_type=form">
|
||||
Go back to your mail server
|
||||
<a t-att-href="redirect_url">
|
||||
Go back
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-microsoft_outlook"
|
||||
version = "16.0.0"
|
||||
description = "Microsoft Outlook - Odoo addon"
|
||||
description = "Microsoft Outlook -
|
||||
Odoo addon
|
||||
"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-mail>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-mail>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -16,7 +18,7 @@ classifiers = [
|
|||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue