Начальное наполнение
This commit is contained in:
parent
3282bb11fb
commit
841c5c2ac5
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
19
__manifest__.py
Normal file
19
__manifest__.py
Normal file
@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
"name": "Microsoft Outlook",
|
||||
"version": "1.1",
|
||||
"category": "Hidden",
|
||||
"description": "Outlook support for incoming / outgoing mail servers",
|
||||
"depends": [
|
||||
"mail",
|
||||
],
|
||||
"data": [
|
||||
"views/fetchmail_server_views.xml",
|
||||
"views/ir_mail_server_views.xml",
|
||||
"views/res_config_settings_views.xml",
|
||||
"views/templates.xml",
|
||||
],
|
||||
"license": "LGPL-3",
|
||||
}
|
4
controllers/__init__.py
Normal file
4
controllers/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
76
controllers/main.py
Normal file
76
controllers/main.py
Normal file
@ -0,0 +1,76 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
import logging
|
||||
import werkzeug
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo import http
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.http import request
|
||||
from odoo.tools import consteq
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class MicrosoftOutlookController(http.Controller):
|
||||
@http.route('/microsoft_outlook/confirm', type='http', auth='user')
|
||||
def microsoft_outlook_callback(self, code=None, state=None, error_description=None, **kwargs):
|
||||
"""Callback URL during the OAuth process.
|
||||
|
||||
Outlook redirects the user browser to this endpoint with the authorization code.
|
||||
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()
|
||||
|
||||
try:
|
||||
state = json.loads(state)
|
||||
model_name = state['model']
|
||||
rec_id = state['id']
|
||||
csrf_token = state['csrf_token']
|
||||
except Exception:
|
||||
_logger.error('Microsoft Outlook: Wrong state value %r.', state)
|
||||
raise Forbidden()
|
||||
|
||||
if error_description:
|
||||
return request.render('microsoft_outlook.microsoft_outlook_oauth_error', {
|
||||
'error': error_description,
|
||||
'model_name': model_name,
|
||||
'rec_id': rec_id,
|
||||
})
|
||||
|
||||
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
|
||||
raise Forbidden()
|
||||
|
||||
record = model.browse(rec_id).exists()
|
||||
if not record:
|
||||
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),
|
||||
'model_name': model_name,
|
||||
'rec_id': rec_id,
|
||||
})
|
||||
|
||||
record.write({
|
||||
'microsoft_outlook_refresh_token': refresh_token,
|
||||
'microsoft_outlook_access_token': access_token,
|
||||
'microsoft_outlook_access_token_expiration': expiration,
|
||||
})
|
||||
|
||||
return request.redirect(f'/web?#id={rec_id}&model={model_name}&view_type=form')
|
286
i18n/ar.po
Normal file
286
i18n/ar.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: 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=\"تحرير الإعدادات \"/>"
|
||||
|
||||
#. 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"
|
||||
" قم بتوصيل حساب 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 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
|
||||
#. 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 "
|
||||
|
||||
#. 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 ""
|
||||
"قم بتوصيل حساب 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 لقبول الأذونات. "
|
||||
|
||||
#. 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 "معرّف تطبيق Outlook "
|
||||
|
||||
#. 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 ""
|
||||
"أمان الاتصال غير صالح لخادم بريد 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 "
|
||||
|
||||
#. 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 "مجموعة مخصصات 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
|
||||
#: 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 "
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 الخاصة بك. "
|
||||
|
||||
#. 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/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. "
|
||||
|
||||
#. 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. لا تتطلب "
|
||||
"عملية المصادقة ذلك "
|
||||
|
||||
#. 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 "SSL مطلوب للخادم %r. "
|
||||
|
||||
#. 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 "سر تطبيق 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. "
|
||||
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "خطأ غير معروف. "
|
274
i18n/bg.po
Normal file
274
i18n/bg.po
Normal file
@ -0,0 +1,274 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "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 ""
|
285
i18n/ca.po
Normal file
285
i18n/ca.po
Normal file
@ -0,0 +1,285 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Eric Antones <eantones@users.noreply.github.com>, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# martioodo hola, 2023
|
||||
# Jonatan Gk, 2023
|
||||
# marcescu, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ivan Espinola, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticar amb"
|
||||
|
||||
#. 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 d'autenticació"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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»."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 de l'aplicació Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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
|
||||
msgid "Mail Server"
|
||||
msgstr "Servidor de correu"
|
||||
|
||||
#. 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 "Només l'administrador pot enllaçar un servidor de correu 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 "Testimoni d'accés de l'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 "Marca horària de caducitat del testimoni d'autenticació de l'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 del client de l'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 "Secret del client 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 "Autenticació OAuth de l'Outlook"
|
||||
|
||||
#. 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 "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/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ó."
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Secret de l'aplicació Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
267
i18n/cs.po
Normal file
267
i18n/cs.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
"<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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Ověřit s"
|
||||
|
||||
#. 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 "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."
|
||||
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 "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 "
|
||||
"\"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 "Emailový 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 ""
|
||||
|
||||
#. 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 "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 "Tajný klíč klienta 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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajný klíč"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
275
i18n/da.po
Normal file
275
i18n/da.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Autentificer med"
|
||||
|
||||
#. 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 "Konfigurer opsætning"
|
||||
|
||||
#. 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 "Gå tilbage til din mailserver"
|
||||
|
||||
#. 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 "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 "
|
||||
"\"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 "Mail server"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "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."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Hemmelighed"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 ""
|
287
i18n/de.po
Normal file
287
i18n/de.po
Normal file
@ -0,0 +1,287 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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"
|
||||
" 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 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 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 Gültig\n"
|
||||
" </span>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Authentifizieren mit"
|
||||
|
||||
#. 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 "Authentifizierungs-URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 Ihrer Outlook-App"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mailserver"
|
||||
|
||||
#. 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 "Nur der Administrator kann einen Outlook-Mailserver verbinden."
|
||||
|
||||
#. 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-Zugriffstoken"
|
||||
|
||||
#. 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 "Ablaufdatum des Outlook-Zugriffstokens"
|
||||
|
||||
#. 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-Geheimnis"
|
||||
|
||||
#. 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-Authentifizierung"
|
||||
|
||||
#. 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-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/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."
|
||||
|
||||
#. 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 ""
|
||||
"Bitte lassen Sie das Passwortfeld für den Outlook-Mailserver %r leer. Der "
|
||||
"OAuth-Prozess benötigt es nicht"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Geheimnis"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Geheimnis Ihrer Outlook-App"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
287
i18n/es.po
Normal file
287
i18n/es.po
Normal file
@ -0,0 +1,287 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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 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 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 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 de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentificar con"
|
||||
|
||||
#. 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 autenticación"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
msgstr ""
|
||||
"Conecte su cuenta de Outlook con el proceso de autenticación de OAuth. \n"
|
||||
"Por defecto, 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 de su aplicación de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Servidor de correo entrante"
|
||||
|
||||
#. 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 ""
|
||||
"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?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Servidor de correo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
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
|
||||
#: 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 de acceso de 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 "Tiempo límite de caducidad para el token de acceso de 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 de cliente de 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 "Secreto de cliente de 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 "Autenticación OAuth de Outlook"
|
||||
|
||||
#. 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 "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/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 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"
|
||||
msgstr ""
|
||||
"Deje el campo de contraseña en blanco para el servidor de correo de Outlook "
|
||||
"%r. El proceso de OAuth no lo requiere."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secreto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Secreto de su aplicación de 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 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
|
||||
#: 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 "El 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."
|
288
i18n/es_419.po
Normal file
288
i18n/es_419.po
Normal file
@ -0,0 +1,288 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
"<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 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 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 de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticar con"
|
||||
|
||||
#. 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 autenticación"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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\"."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 de su aplicación de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Servidor de correo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
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
|
||||
#: 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 de acceso de 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 "Marca de tiempo de vencimiento del token de acceso de 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 de cliente de 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 "Secreto de cliente de 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 "Autenticación OAuth de Outlook"
|
||||
|
||||
#. 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 "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/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 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"
|
||||
msgstr ""
|
||||
"Deje el campo de contraseña en blanco para el servidor de correo de Outlook "
|
||||
"%r. El proceso de OAuth no lo requiere."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secreto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Secreto de su aplicación de 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 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
|
||||
#: 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 "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."
|
267
i18n/et.po
Normal file
267
i18n/et.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "
|
||||
|
||||
#. 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 "Autentimise URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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"
|
||||
|
||||
#. 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 "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 "
|
||||
"\"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 "Kirjade server"
|
||||
|
||||
#. 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 "Outlook kliendi 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 ""
|
||||
|
||||
#. 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 "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."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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 "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
|
||||
#: 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Tundmatu viga."
|
275
i18n/fa.po
Normal file
275
i18n/fa.po
Normal file
@ -0,0 +1,275 @@
|
||||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "ایراد ناشناخته."
|
281
i18n/fi.po
Normal file
281
i18n/fi.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Johanna Valkonen <miujohanna@gmail.com>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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"
|
||||
"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-cog\" title=\"Edit Settings\"/>"
|
||||
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 ""
|
||||
"<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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Tunnistautuminen"
|
||||
|
||||
#. 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 "Todennus URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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\"."
|
||||
|
||||
#. 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 ""
|
||||
"Yhdistä henkilökohtainen Outlook-tilisi OAuthin avulla.\n"
|
||||
"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"
|
||||
|
||||
#. 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 "Outlook-sovelluksen ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Sähköpostipalvelin"
|
||||
|
||||
#. 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 "Vain järjestelmänvalvoja voi yhdistää Outlookin sähköpostipalvelimen."
|
||||
|
||||
#. 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 pääsytunniste"
|
||||
|
||||
#. 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 pääsytunnisteen viimeinen voimassaoloaika"
|
||||
|
||||
#. 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 asiakasohjelman 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 asiakasohjelman salaisuus"
|
||||
|
||||
#. 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-todennus"
|
||||
|
||||
#. 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 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."
|
||||
|
||||
#. 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/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 ""
|
||||
"Täytä \"Käyttäjätunnus\"-kenttään Outlook/Office365-käyttäjätunnuksesi "
|
||||
"(sähköpostiosoitteesi). Tämän pitäisi olla sama tili kuin Outlook "
|
||||
"OAuthentication Tokenin käyttämä tili."
|
||||
|
||||
#. 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 ""
|
||||
"Jätä salasanakenttä tyhjäksi Outlookin sähköpostipalvelimelle %r. OAuth-"
|
||||
"prosessi ei vaadi sitä"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Salausavain"
|
||||
|
||||
#. 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-sovelluksen salaisuus"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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-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."
|
287
i18n/fr.po
Normal file
287
i18n/fr.po
Normal file
@ -0,0 +1,287 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
"<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 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 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"
|
||||
" Jeton Outlook valide\n"
|
||||
" </span>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "S'authentifier avec"
|
||||
|
||||
#. 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 "Authentification URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
msgstr ""
|
||||
"Connectez votre compte Outlook grâce au processus d'authentification OAuth. \n"
|
||||
"Par défaut, seul un utilisateur avec une adresse email 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 de votre app Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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 ?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Serveur de messagerie"
|
||||
|
||||
#. 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 "Seul l'administrateur peut lier un serveur de messagerie 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 "Jeton d'accès 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 "Horodatage de l'expiration du jeton d'accès 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 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"
|
||||
|
||||
#. 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 "Authentification OAuth Outlook"
|
||||
|
||||
#. 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 "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."
|
||||
|
||||
#. 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 ""
|
||||
"Veuillez complétez votre nom d'utilisateur Outlook/Office365 (votre adresse "
|
||||
"email) dans le champ \"Nom d'utilisateur\". Ceci devrait être le même compte"
|
||||
" que celui utilisé pour le jeton OAuthentification 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"
|
||||
msgstr ""
|
||||
"Veuillez laisser le champ Mot de passe vide pour le serveur de messagerie "
|
||||
"Outlook %r. Le processus OAuth ne l'exige pas"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Secret de votre app Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
277
i18n/he.po
Normal file
277
i18n/he.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2023
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 ""
|
277
i18n/hu.po
Normal file
277
i18n/hu.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# Tamás Dombos, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Beállítások módosítása"
|
||||
|
||||
#. 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 "Azonosító"
|
||||
|
||||
#. 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 "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 "
|
||||
"\"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 "Levelezőszerver"
|
||||
|
||||
#. 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 "Titok"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 ""
|
286
i18n/id.po
Normal file
286
i18n/id.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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 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 ""
|
||||
"<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 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 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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentikasi denga"
|
||||
|
||||
#. 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 "URL Autentikasi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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\". "
|
||||
|
||||
#. 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 ""
|
||||
"Hubungkan akun Outlook pribadi Anda menggunakan OAuth.\n"
|
||||
"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"
|
||||
|
||||
#. 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 dari app Outlook Anda"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Email 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 "Hanya administrator yang dapat link server email 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 Akses 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 Kadaluwarsa Token Akses 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 Klien 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 "Klien Outlook Rahasia"
|
||||
|
||||
#. 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 "Autentikasi OAuth Outlook"
|
||||
|
||||
#. 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 "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/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 ""
|
||||
"Mohon isi field \"Username\" dengan username Outlook/Office365 Anda (alamat "
|
||||
"email Anda). Ini harusnya merupakan akun yang sama dengan yang Anda gunakan "
|
||||
"untuk Token OAuthentication 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"
|
||||
msgstr ""
|
||||
"Mohon biarkan kosong kolom password untuk server email Outlook %r. Proses "
|
||||
"OAuth tidak membutuhkannya"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Rahasia"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Secret dari app Outlook Anda"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 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."
|
286
i18n/it.po
Normal file
286
i18n/it.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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=\"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 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 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 valido\n"
|
||||
" </span>"
|
||||
|
||||
#. 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 dell' Access Token. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentica con"
|
||||
|
||||
#. 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 di autenticazione"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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\"."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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 tuo 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 della tua app Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server per e-mail 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 "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Sicurezza di connessione non corretta per il server di posta di Outlook %r. "
|
||||
"Impostala 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?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Server di posta"
|
||||
|
||||
#. 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 "Solo un amministratore può collegare un mail server di 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 Access 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 "Timestamp di scadenza del token di accesso di 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 ID client"
|
||||
|
||||
#. 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 segreto client"
|
||||
|
||||
#. 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 "Autenticazione OAuth Outlook"
|
||||
|
||||
#. 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 "Configura le credenziali Outlook, per favore."
|
||||
|
||||
#. 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 utilizzarlo accedi al tuo account Outlook."
|
||||
|
||||
#. 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 ""
|
||||
"Completa il campo \"Nome utente\" con il nome utente Outlook/Office 365 (il "
|
||||
"tuo indirizzo e-mail). Questo dovrebbe essere lo stesso account utilizzato "
|
||||
"per il token di OAutenticazione 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"
|
||||
msgstr ""
|
||||
"Lascia il campo della password vuoto per il mail server di Outlook %r. Il "
|
||||
"processo OAuth non la richiede"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Leggi altro"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Segreto della tua app Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
279
i18n/ja.po
Normal file
279
i18n/ja.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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"
|
||||
" 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 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
|
||||
#. 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"
|
||||
|
||||
#. 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 "認証URI"
|
||||
|
||||
#. 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 ""
|
||||
"OAuth認証プロセスでOutlookアカウントを接続します。 \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 ""
|
||||
"OAuthを使用して個人Outlookアカウントに接続します。 \n"
|
||||
"、許可を受け入れるために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 "メールサーバに戻る"
|
||||
|
||||
#. 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 "OutlookアプリのID"
|
||||
|
||||
#. 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 "メールサーバ%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のクレデンシャルが設定されているか"
|
||||
|
||||
#. 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 "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
|
||||
#: 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アクセストークン"
|
||||
|
||||
#. 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アクセストークン期限切れタイムスタンプ"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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クライアントシークレット"
|
||||
|
||||
#. 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認証"
|
||||
|
||||
#. 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リフレッシュトークン"
|
||||
|
||||
#. 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/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トークンに使用したものと同じアカウントでなければなりません。"
|
||||
|
||||
#. 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処理はそれを必要としません。"
|
||||
|
||||
#. 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 "サーバ%r用にSSLが必要です。"
|
||||
|
||||
#. 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 "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 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 "Outlookの許可コードを生成するためのURL"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "不明なエラー"
|
279
i18n/ko.po
Normal file
279
i18n/ko.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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"
|
||||
" 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 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
|
||||
#. 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"
|
||||
|
||||
#. 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 "인증 URL"
|
||||
|
||||
#. 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 ""
|
||||
"OAuth 인증 프로세스를 통하여 Outlook 계정을 연결합니다. \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 ""
|
||||
"OAuth를 사용하여 Outlook 개인 계정을 연결시킵니다. \n"
|
||||
"권한을 수락할 수 있도록 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 "메일 서버로 돌아가기"
|
||||
|
||||
#. 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 "Outlook 앱 아이디"
|
||||
|
||||
#. 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 "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 자격 증명 설정 여부"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 액세스 토큰"
|
||||
|
||||
#. 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 액세스 토큰 만료 타임스탬프"
|
||||
|
||||
#. 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 클라이언트 아이디"
|
||||
|
||||
#. 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 클라이언트 비밀번호"
|
||||
|
||||
#. 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 인증"
|
||||
|
||||
#. 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 새로고침 토큰"
|
||||
|
||||
#. 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/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"
|
||||
" 인증 토큰에 사용된 계정과 동일해야 합니다."
|
||||
|
||||
#. 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 프로세스에는 비밀번호가 필요하지 않습니다."
|
||||
|
||||
#. 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 "%r 서버에 SSL이 있어야 합니다."
|
||||
|
||||
#. 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 "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 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
|
||||
#: 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 "Outlook에서 인증 코드를 생성하기 위한 URL."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "알 수 없는 오류"
|
281
i18n/lt.po
Normal file
281
i18n/lt.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Arunas V. <arunas@devoro.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Arunas V. <arunas@devoro.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. 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 "Autorizacijos URL"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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į"
|
||||
|
||||
#. 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 "Į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 "
|
||||
"\"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
|
||||
msgid "Mail Server"
|
||||
msgstr "Pašto serveris"
|
||||
|
||||
#. 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 "Tik administratorius gali susieti „Outlook“ pašto 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 Prieigos Raktas"
|
||||
|
||||
#. 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 prieigos rakto galiojimo laiko žyma"
|
||||
|
||||
#. 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 Kliento 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 Kliento \"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 ""
|
||||
|
||||
#. 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 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/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 ""
|
||||
"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"
|
||||
|
||||
#. 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 "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
|
||||
#: 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, 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."
|
275
i18n/lv.po
Normal file
275
i18n/lv.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. 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 "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. 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 "Ienākošā pasta 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 "
|
||||
"\"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"
|
||||
|
||||
#. 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 "Lasīt vairāk"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 ""
|
260
i18n/microsoft_outlook.pot
Normal file
260
i18n/microsoft_outlook.pot
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2024-01-29 10:45+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
286
i18n/nl.po
Normal file
286
i18n/nl.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
"<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 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 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"
|
||||
" Geldige Outlook Token\n"
|
||||
" </span>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Authenticeren met"
|
||||
|
||||
#. 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 "Authenticatie URL"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 van je Outlook app"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mailserver"
|
||||
|
||||
#. 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 "Alleen de beheerder kan een Outlook mailserver koppelen."
|
||||
|
||||
#. 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 toegangstoken"
|
||||
|
||||
#. 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 "Vervaltijdstempel van Outlook Toegangstoken"
|
||||
|
||||
#. 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 clientgeheim"
|
||||
|
||||
#. 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 Authenticatie"
|
||||
|
||||
#. 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 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/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 ""
|
||||
"Graag je Outlook/Office365 gebruikersnaam (je e-mailadres) in te vullen in "
|
||||
"het veld \"Gebruikersnaam\". Deze zou hetzelfde account moeten zijn als die "
|
||||
"gebruikt voor de Outlook OAuthenticatie 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 ""
|
||||
"Laat het wachtwoordveld leeg voor Outlook mailserver %r. Het OAuth-proces "
|
||||
"vereist dit niet"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Geheim"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Geheim van je Outlook app"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
274
i18n/pl.po
Normal file
274
i18n/pl.po
Normal file
@ -0,0 +1,274 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Uwierzytelnij za pomocą"
|
||||
|
||||
#. 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 "Uwierzytelnienie URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. 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 ""
|
||||
"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\"."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 twojej aplikacji Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"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
|
||||
msgid "Mail Server"
|
||||
msgstr "Serwer poczty"
|
||||
|
||||
#. 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 "Tylko administrator może połączyć serwer pocztowy programu 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 dostępu 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 "Znacznik czasu wygaśnięcia tokena dostępu 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 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"
|
||||
|
||||
#. 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 "Uwierzytelnianie OAuth Outlook"
|
||||
|
||||
#. 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 "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/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 ""
|
||||
"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
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Sekret"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
#: 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 "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."
|
277
i18n/pt.po
Normal file
277
i18n/pt.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. 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 "URI de Autenticação"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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 "Servidor de E-mail 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 "
|
||||
"\"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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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 "Atualizar Código 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 ""
|
||||
|
||||
#. 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 ""
|
||||
"Por favor deixe o campo da senha vazio para o servidor de correio Outlook "
|
||||
"%r. O processo de OAuth não o exige."
|
||||
|
||||
#. 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 "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
|
||||
#: 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 "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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
286
i18n/pt_BR.po
Normal file
286
i18n/pt_BR.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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 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 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
|
||||
#. 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 "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 "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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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_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"
|
||||
|
||||
#. 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 do seu aplicativo Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Segurança de conexão incorreta para o servidor de e-mail Outlook %r. Defina "
|
||||
"como \"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?"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Servidor de e-mail"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "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 vincular um servidor de e-mail 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"
|
||||
|
||||
#. 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 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 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 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 "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 "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 "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/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"
|
||||
msgstr ""
|
||||
"Deixe o campo da senha vazio para o servidor de e-mail Outlook %r. O "
|
||||
"processo de OAuth não exige isso."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
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 "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 de API do Outlook na configuração geral para "
|
||||
"vincular 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
|
||||
#: 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 "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."
|
288
i18n/ru.po
Normal file
288
i18n/ru.po
Normal file
@ -0,0 +1,288 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: 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"
|
||||
" Подключите учетную запись 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 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
|
||||
#. 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"
|
||||
|
||||
#. 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 "URI аутентификации"
|
||||
|
||||
#. 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 ""
|
||||
"Подключите учетную запись 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, чтобы принять разрешения."
|
||||
|
||||
#. 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 "Идентификатор вашего приложения Outlook"
|
||||
|
||||
#. 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 ""
|
||||
"Неверная защита соединения для почтового сервера 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"
|
||||
|
||||
#. 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 "Миксин 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
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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/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."
|
||||
|
||||
#. 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 не требует этого"
|
||||
|
||||
#. 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 "Для сервера требуется SSL %r."
|
||||
|
||||
#. 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 "Секрет вашего приложения 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 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Неизвестная ошибка."
|
273
i18n/sk.po
Normal file
273
i18n/sk.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Nastavenia konfigurácie"
|
||||
|
||||
#. 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 "Server prichádzajúcej pošty"
|
||||
|
||||
#. 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 "Mailový server"
|
||||
|
||||
#. 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 "Čítať viac"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 ""
|
277
i18n/sl.po
Normal file
277
i18n/sl.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Katja Deržič, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Katja Deržič, 2024\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Preverjanje pristnosti z"
|
||||
|
||||
#. 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 "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."
|
||||
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 "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 "
|
||||
"\"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 "Poštni strežnik"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 ""
|
284
i18n/sr.po
Normal file
284
i18n/sr.po
Normal file
@ -0,0 +1,284 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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-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"
|
||||
" Povežite svoj Outlook nalog"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Authentifikacioni 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."
|
277
i18n/sv.po
Normal file
277
i18n/sv.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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 "Autentisera dig med"
|
||||
|
||||
#. 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 "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."
|
||||
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 "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 "
|
||||
"\"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 "Mail-server"
|
||||
|
||||
#. 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 "Klient-ID för 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-klientens hemlighet"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Hemlighet"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 ""
|
286
i18n/th.po
Normal file
286
i18n/th.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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=\"แก้ไขการตั้งค่า\"/>"
|
||||
|
||||
#. 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"
|
||||
" เชื่อมต่อบัญชี 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 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
|
||||
#. 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"
|
||||
|
||||
#. 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 "URI การยืนยันความถูกต้อง"
|
||||
|
||||
#. 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 ""
|
||||
"เชื่อมต่อบัญชี 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 เพื่อยอมรับการอนุญาต"
|
||||
|
||||
#. 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 "ID ของแอป Outlook ของคุณ"
|
||||
|
||||
#. 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 ""
|
||||
"ความปลอดภัยในการเชื่อมต่อไม่ถูกต้องสำหรับเซิร์ฟเวอร์จดหมาย 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 หรือไม่"
|
||||
|
||||
#. 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 "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
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "การยืนยันตัวตน OAuth ของ Outlook"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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/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 โทเค็น"
|
||||
|
||||
#. 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 ไม่ต้องการมัน"
|
||||
|
||||
#. 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 "จำเป็นต้องมี SSL สำหรับเซิร์ฟเวอร์ %r"
|
||||
|
||||
#. 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 "ความลับของแอปพลิเคชัน 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 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ"
|
280
i18n/tr.po
Normal file
280
i18n/tr.po
Normal file
@ -0,0 +1,280 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# İlknur Gözütok, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Halil, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "İle kimlik doğrulaması yapın"
|
||||
|
||||
#. 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 "Kimlik doğrulama URI'si"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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."
|
||||
|
||||
#. 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 kullanarak kişisel Outlook hesabınızı bağlayın. \n"
|
||||
"İ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"
|
||||
|
||||
#. 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 "Outlook uygulamanızın kimliği"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
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 "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Outlook posta sunucusu için Yanlış Bağlantı Güvenliği %r. Lütfen bunu \"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"
|
||||
msgstr "Posta Sunucusu"
|
||||
|
||||
#. 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 "Outlook posta sunucusunu yalnızca yönetici bağlayabilirsiniz."
|
||||
|
||||
#. 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 Access Belirteci"
|
||||
|
||||
#. 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 Access belirteci süre sonu zaman damgası"
|
||||
|
||||
#. 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 Müşteri Kimliği"
|
||||
|
||||
#. 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 Müşteri Gizli Anahtarı"
|
||||
|
||||
#. 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 Kimlik Doğrulaması"
|
||||
|
||||
#. 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 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/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 ""
|
||||
"Lütfen Outlook posta sunucusu %r için parola alanını boş bırakın. OAuth "
|
||||
"işlemi bunu gerektirmez"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
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."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Gizli"
|
||||
|
||||
#. 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 uygulamanızın sırrı"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
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
|
||||
#: 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 "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."
|
281
i18n/uk.po
Normal file
281
i18n/uk.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: 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"
|
||||
" Підключіть ваш обліковий запис 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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. 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 "URI входу"
|
||||
|
||||
#. 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 ""
|
||||
"Підключіть свій обліковий запис 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, щоб прийняти дозволи."
|
||||
|
||||
#. 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 "ID вашого додатку Outlook"
|
||||
|
||||
#. 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 ""
|
||||
"Неправильний захист підключення для поштового сервера 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
|
||||
msgid "Mail Server"
|
||||
msgstr "Поштовий сервер"
|
||||
|
||||
#. 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 "Лише адміністратор може зв’язати поштовий сервер 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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/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."
|
||||
|
||||
#. 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. Обробка OAuth "
|
||||
"цього не вимагає"
|
||||
|
||||
#. 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 "SSL потрібен для сервера."
|
||||
|
||||
#. 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 "Секретний ключ вашого додатка 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 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Невідома помилка."
|
274
i18n/vi.po
Normal file
274
i18n/vi.po
Normal file
@ -0,0 +1,274 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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=\"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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<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
|
||||
#. 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"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Xác thực với"
|
||||
|
||||
#. 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 xác thực"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
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."
|
||||
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 "Quay lại Mail server của bạn"
|
||||
|
||||
#. 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 "Máy chủ nhận thư"
|
||||
|
||||
#. 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 "Chứng thực Outlook đã được cấu hình"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Máy chủ gửi thư"
|
||||
|
||||
#. 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 "Chỉ tài khoản Admin mới có thể liên kết một Mail server 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 Access 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 ""
|
||||
|
||||
#. 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 máy khách 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 "Mật khẩu khách 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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "Đường dẫn URL để tạo mã chứng thực từ 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 "Lỗi không xác định."
|
279
i18n/zh_CN.po
Normal file
279
i18n/zh_CN.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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"
|
||||
" 连接您的 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 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
|
||||
#. 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 "认证以"
|
||||
|
||||
#. 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 ""
|
||||
"用OAuth身份验证过程连接你的Outlook账户。 \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 ""
|
||||
"使用OAuth连接您的个人Outlook账户。\n"
|
||||
"您将被重定向到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 "返回您的邮件服务器"
|
||||
|
||||
#. 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 "您的Outlook应用ID"
|
||||
|
||||
#. 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 "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安全凭证已配置"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 Access 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访问令牌时间戳到期"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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客户端密码"
|
||||
|
||||
#. 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身份验证"
|
||||
|
||||
#. 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 刷新令牌"
|
||||
|
||||
#. 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/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 "
|
||||
"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 进程不需要它"
|
||||
|
||||
#. 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 "服务器需要 SSL %r。"
|
||||
|
||||
#. 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 "您的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 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 "用于从 Outlook 生成授权代码的 URL"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "未知错误."
|
279
i18n/zh_TW.po
Normal file
279
i18n/zh_TW.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:45+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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=\"編輯設定\"/>"
|
||||
|
||||
#. 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"
|
||||
" 連接您的 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 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
|
||||
#. 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"
|
||||
|
||||
#. 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 ""
|
||||
"用OAuth身份驗證過程連接你的Outlook賬戶。 \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 ""
|
||||
"使用OAuth連接您的個人Outlook賬戶。\n"
|
||||
"您將被重定向到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 "返回您的郵件服務器"
|
||||
|
||||
#. 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 "您的Outlook應用程式ID"
|
||||
|
||||
#. 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 "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 登入資訊是否已配置"
|
||||
|
||||
#. 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 "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
|
||||
#: 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 存取代碼"
|
||||
|
||||
#. 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 存取代碼時間戳到期"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 客戶端秘密"
|
||||
|
||||
#. 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 身份驗證"
|
||||
|
||||
#. 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 更新代碼"
|
||||
|
||||
#. 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/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 "
|
||||
"代碼所使用的帳戶一致。"
|
||||
|
||||
#. 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 的過程不需要它"
|
||||
|
||||
#. 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 "伺服器 %r 需要 SSL。"
|
||||
|
||||
#. 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 "你的 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 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 "從 Outlook 產生授權碼的網址"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "未知錯誤"
|
8
models/__init__.py
Normal file
8
models/__init__.py
Normal file
@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import microsoft_outlook_mixin
|
||||
|
||||
from . import fetchmail_server
|
||||
from . import ir_mail_server
|
||||
from . import res_config_settings
|
69
models/fetchmail_server.py
Normal file
69
models/fetchmail_server.py
Normal file
@ -0,0 +1,69 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class FetchmailServer(models.Model):
|
||||
"""Add the Outlook OAuth authentication on the incoming mail servers."""
|
||||
|
||||
_name = 'fetchmail.server'
|
||||
_inherit = ['fetchmail.server', 'microsoft.outlook.mixin']
|
||||
|
||||
_OUTLOOK_SCOPE = 'https://outlook.office.com/IMAP.AccessAsUser.All'
|
||||
|
||||
server_type = fields.Selection(selection_add=[('outlook', 'Outlook OAuth Authentication')], ondelete={'outlook': 'set default'})
|
||||
|
||||
def _compute_server_type_info(self):
|
||||
outlook_servers = self.filtered(lambda server: server.server_type == 'outlook')
|
||||
outlook_servers.server_type_info = _(
|
||||
'Connect your personal Outlook account using OAuth. \n'
|
||||
'You will be redirected to the Outlook login page to accept '
|
||||
'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))
|
||||
|
||||
@api.onchange('server_type')
|
||||
def onchange_server_type(self):
|
||||
"""Set the default configuration for a IMAP Outlook server."""
|
||||
if self.server_type == 'outlook':
|
||||
self.server = 'imap.outlook.com'
|
||||
self.is_ssl = True
|
||||
self.port = 993
|
||||
else:
|
||||
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()
|
||||
|
||||
def _imap_login(self, connection):
|
||||
"""Authenticate the IMAP connection.
|
||||
|
||||
If the mail server is Outlook, we use the OAuth2 authentication protocol.
|
||||
"""
|
||||
self.ensure_one()
|
||||
if self.server_type == 'outlook':
|
||||
auth_string = self._generate_outlook_oauth2_string(self.user)
|
||||
connection.authenticate('XOAUTH2', lambda x: auth_string)
|
||||
connection.select('INBOX')
|
||||
else:
|
||||
super()._imap_login(connection)
|
||||
|
||||
def _get_connection_type(self):
|
||||
"""Return which connection must be used for this mail server (IMAP or POP).
|
||||
The Outlook mail server used an IMAP connection.
|
||||
"""
|
||||
self.ensure_one()
|
||||
return 'imap' if self.server_type == 'outlook' else super()._get_connection_type()
|
87
models/ir_mail_server.py
Normal file
87
models/ir_mail_server.py
Normal file
@ -0,0 +1,87 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class IrMailServer(models.Model):
|
||||
"""Add the Outlook OAuth authentication on the outgoing mail servers."""
|
||||
|
||||
_name = 'ir.mail_server'
|
||||
_inherit = ['ir.mail_server', 'microsoft.outlook.mixin']
|
||||
|
||||
_OUTLOOK_SCOPE = 'https://outlook.office.com/SMTP.Send'
|
||||
|
||||
smtp_authentication = fields.Selection(
|
||||
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()
|
||||
|
||||
@api.constrains('smtp_authentication', 'smtp_pass', 'smtp_encryption', 'smtp_user')
|
||||
def _check_use_microsoft_outlook_service(self):
|
||||
outlook_servers = self.filtered(lambda server: server.smtp_authentication == 'outlook')
|
||||
for server in outlook_servers:
|
||||
if server.smtp_pass:
|
||||
raise UserError(_(
|
||||
'Please leave the password field empty for Outlook mail server %r. '
|
||||
'The OAuth process does not require it', server.name))
|
||||
|
||||
if server.smtp_encryption != 'starttls':
|
||||
raise UserError(_(
|
||||
'Incorrect Connection Security for Outlook mail server %r. '
|
||||
'Please set it to "TLS (STARTTLS)".', server.name))
|
||||
|
||||
if not server.smtp_user:
|
||||
raise UserError(_(
|
||||
'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.'))
|
||||
|
||||
@api.onchange('smtp_encryption')
|
||||
def _onchange_encryption(self):
|
||||
"""Do not change the SMTP configuration if it's a Outlook server
|
||||
|
||||
(e.g. the port which is already set)"""
|
||||
if self.smtp_authentication != 'outlook':
|
||||
super()._onchange_encryption()
|
||||
|
||||
@api.onchange('smtp_authentication')
|
||||
def _onchange_smtp_authentication_outlook(self):
|
||||
if self.smtp_authentication == 'outlook':
|
||||
self.smtp_host = 'smtp.outlook.com'
|
||||
self.smtp_encryption = 'starttls'
|
||||
self.smtp_port = 587
|
||||
else:
|
||||
self.microsoft_outlook_refresh_token = False
|
||||
self.microsoft_outlook_access_token = False
|
||||
self.microsoft_outlook_access_token_expiration = False
|
||||
|
||||
@api.onchange('smtp_user', 'smtp_authentication')
|
||||
def _on_change_smtp_user_outlook(self):
|
||||
"""The Outlook mail servers can only be used for the user personal email address."""
|
||||
if self.smtp_authentication == 'outlook':
|
||||
self.from_filter = self.smtp_user
|
||||
|
||||
def _smtp_login(self, connection, smtp_user, smtp_password):
|
||||
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)
|
194
models/microsoft_outlook_mixin.py
Normal file
194
models/microsoft_outlook_mixin.py
Normal file
@ -0,0 +1,194 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
import logging
|
||||
import time
|
||||
import requests
|
||||
|
||||
from werkzeug.urls import url_encode, url_join
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import AccessError, UserError
|
||||
from odoo.tools.misc import hmac
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class MicrosoftOutlookMixin(models.AbstractModel):
|
||||
|
||||
_name = 'microsoft.outlook.mixin'
|
||||
_description = 'Microsoft Outlook Mixin'
|
||||
|
||||
_OUTLOOK_SCOPE = None
|
||||
|
||||
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',
|
||||
groups='base.group_system', copy=False)
|
||||
microsoft_outlook_access_token_expiration = fields.Integer(string='Outlook Access Token Expiration Timestamp',
|
||||
groups='base.group_system', copy=False)
|
||||
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')
|
||||
|
||||
for record in self:
|
||||
if not record.id or not record.is_microsoft_outlook_configured:
|
||||
record.microsoft_outlook_uri = False
|
||||
continue
|
||||
|
||||
record.microsoft_outlook_uri = url_join(self._get_microsoft_endpoint(), 'authorize?%s' % url_encode({
|
||||
'client_id': microsoft_outlook_client_id,
|
||||
'response_type': 'code',
|
||||
'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,
|
||||
'state': json.dumps({
|
||||
'model': record._name,
|
||||
'id': record.id,
|
||||
'csrf_token': record._get_outlook_csrf_token(),
|
||||
})
|
||||
}))
|
||||
|
||||
def open_microsoft_outlook_uri(self):
|
||||
"""Open the URL to accept the Outlook permission.
|
||||
|
||||
This is done with an action, so we can force the user the save the form.
|
||||
We need him to save the form so the current mail server record exist in DB and
|
||||
we can include the record ID in the URL.
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
if not self.env.user.has_group('base.group_system'):
|
||||
raise AccessError(_('Only the administrator can link an Outlook mail server.'))
|
||||
|
||||
if not self.is_microsoft_outlook_configured:
|
||||
raise UserError(_('Please configure your Outlook credentials.'))
|
||||
|
||||
return {
|
||||
'type': 'ir.actions.act_url',
|
||||
'url': self.microsoft_outlook_uri,
|
||||
}
|
||||
|
||||
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
|
||||
"""
|
||||
response = self._fetch_outlook_token('authorization_code', code=authorization_code)
|
||||
return (
|
||||
response['refresh_token'],
|
||||
response['access_token'],
|
||||
int(time.time()) + int(response['expires_in']),
|
||||
)
|
||||
|
||||
def _fetch_outlook_access_token(self, refresh_token):
|
||||
"""Refresh the access token thanks to the refresh token.
|
||||
|
||||
:return:
|
||||
access_token, access_token_expiration
|
||||
"""
|
||||
response = self._fetch_outlook_token('refresh_token', refresh_token=refresh_token)
|
||||
return (
|
||||
response['refresh_token'],
|
||||
response['access_token'],
|
||||
int(time.time()) + int(response['expires_in']),
|
||||
)
|
||||
|
||||
def _fetch_outlook_token(self, grant_type, **values):
|
||||
"""Generic method to request an access token or a refresh token.
|
||||
|
||||
Return the JSON response of the Outlook API and manage the errors which can occur.
|
||||
|
||||
:param grant_type: Depends the action we want to do (refresh_token or authorization_code)
|
||||
:param values: Additional parameters that will be given to the Outlook endpoint
|
||||
"""
|
||||
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')
|
||||
|
||||
response = requests.post(
|
||||
url_join(self._get_microsoft_endpoint(), 'token'),
|
||||
data={
|
||||
'client_id': microsoft_outlook_client_id,
|
||||
'client_secret': microsoft_outlook_client_secret,
|
||||
'scope': 'offline_access %s' % self._OUTLOOK_SCOPE,
|
||||
'redirect_uri': url_join(base_url, '/microsoft_outlook/confirm'),
|
||||
'grant_type': grant_type,
|
||||
**values,
|
||||
},
|
||||
timeout=10,
|
||||
)
|
||||
|
||||
if not response.ok:
|
||||
try:
|
||||
error_description = response.json()['error_description']
|
||||
except Exception:
|
||||
error_description = _('Unknown error.')
|
||||
raise UserError(_('An error occurred when fetching the access token. %s', error_description))
|
||||
|
||||
return response.json()
|
||||
|
||||
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
|
||||
: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:
|
||||
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,
|
||||
self.microsoft_outlook_access_token_expiration,
|
||||
) = self._fetch_outlook_access_token(self.microsoft_outlook_refresh_token)
|
||||
_logger.info(
|
||||
'Microsoft Outlook: fetch new access token. It expires in %i minutes',
|
||||
(self.microsoft_outlook_access_token_expiration - now_timestamp) // 60)
|
||||
else:
|
||||
_logger.info(
|
||||
'Microsoft Outlook: reuse existing access token. It expires in %i minutes',
|
||||
(self.microsoft_outlook_access_token_expiration - now_timestamp) // 60)
|
||||
|
||||
return 'user=%s\1auth=Bearer %s\1\1' % (login, self.microsoft_outlook_access_token)
|
||||
|
||||
def _get_outlook_csrf_token(self):
|
||||
"""Generate a CSRF token that will be verified in `microsoft_outlook_callback`.
|
||||
|
||||
This will prevent a malicious person to make an admin user disconnect the mail servers.
|
||||
"""
|
||||
self.ensure_one()
|
||||
_logger.info('Microsoft Outlook: generate CSRF token for %s #%i', self._name, self.id)
|
||||
return hmac(
|
||||
env=self.env(su=True),
|
||||
scope='microsoft_outlook_oauth',
|
||||
message=(self._name, self.id),
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _get_microsoft_endpoint(self):
|
||||
return self.env["ir.config_parameter"].sudo().get_param(
|
||||
'microsoft_outlook.endpoint',
|
||||
'https://login.microsoftonline.com/common/oauth2/v2.0/',
|
||||
)
|
11
models/res_config_settings.py
Normal file
11
models/res_config_settings.py
Normal file
@ -0,0 +1,11 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
microsoft_outlook_client_identifier = fields.Char('Outlook Client Id', config_parameter='microsoft_outlook_client_id')
|
||||
microsoft_outlook_client_secret = fields.Char('Outlook Client Secret', config_parameter='microsoft_outlook_client_secret')
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="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>
|
After Width: | Height: | Size: 4.2 KiB |
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_fetchmail_outlook
|
49
tests/test_fetchmail_outlook.py
Normal file
49
tests/test_fetchmail_outlook.py
Normal file
@ -0,0 +1,49 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import time
|
||||
|
||||
from unittest.mock import ANY, Mock, patch
|
||||
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestFetchmailOutlook(TransactionCase):
|
||||
|
||||
@patch('odoo.addons.mail.models.fetchmail.IMAP4_SSL')
|
||||
def test_connect(self, mock_imap):
|
||||
"""Test that the connect method will use the right
|
||||
authentication method with the right arguments.
|
||||
"""
|
||||
mock_connection = Mock()
|
||||
mock_imap.return_value = mock_connection
|
||||
|
||||
mail_server = self.env['fetchmail.server'].create({
|
||||
'name': 'Test server',
|
||||
'server_type': 'outlook',
|
||||
'user': 'test@example.com',
|
||||
'microsoft_outlook_access_token': 'test_access_token',
|
||||
'microsoft_outlook_access_token_expiration': time.time() + 1000000,
|
||||
'password': '',
|
||||
'is_ssl': True,
|
||||
})
|
||||
|
||||
mail_server.connect()
|
||||
|
||||
mock_connection.authenticate.assert_called_once_with('XOAUTH2', ANY)
|
||||
args = mock_connection.authenticate.call_args[0]
|
||||
|
||||
self.assertEqual(args[1](None), 'user=test@example.com\1auth=Bearer test_access_token\1\1',
|
||||
msg='Should use the right access token')
|
||||
|
||||
mock_connection.select.assert_called_once_with('INBOX')
|
||||
|
||||
def test_constraints(self):
|
||||
"""Test the constraints related to the Outlook mail server."""
|
||||
with self.assertRaises(UserError, msg='Should ensure that the password is empty'):
|
||||
self.env['fetchmail.server'].create({
|
||||
'name': 'Test server',
|
||||
'server_type': 'outlook',
|
||||
'password': 'test',
|
||||
})
|
41
views/fetchmail_server_views.xml
Normal file
41
views/fetchmail_server_views.xml
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="fetchmail_server_view_form" model="ir.ui.view">
|
||||
<field name="name">fetchmail.server.view.form.inherit.outlook</field>
|
||||
<field name="model">fetchmail.server</field>
|
||||
<field name="priority">1000</field>
|
||||
<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 invisible="server_type != 'outlook'"
|
||||
class="d-flex flex-row align-items-center" colspan="2">
|
||||
<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"
|
||||
invisible="not is_microsoft_outlook_configured or 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"
|
||||
invisible="not is_microsoft_outlook_configured or 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="oi-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
invisible="is_microsoft_outlook_configured or server_type != 'outlook'">
|
||||
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
46
views/ir_mail_server_views.xml
Normal file
46
views/ir_mail_server_views.xml
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="ir_mail_server_view_form" model="ir.ui.view">
|
||||
<field name="name">ir.mail_server.view.form.inherit.outlook</field>
|
||||
<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 invisible="smtp_authentication != 'outlook'"
|
||||
class="d-flex flex-row align-items-center" colspan="8">
|
||||
<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"
|
||||
invisible="not is_microsoft_outlook_configured or 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"
|
||||
invisible="not is_microsoft_outlook_configured or 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="oi-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
invisible="is_microsoft_outlook_configured or 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/15.0/applications/general/email_communication/email_servers.html?highlight=outgoing email server#use-a-default-from-email-address"
|
||||
invisible="smtp_authentication != 'outlook'" target="_blank">
|
||||
Read More
|
||||
</a>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
26
views/res_config_settings_views.xml
Normal file
26
views/res_config_settings_views.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.microsoft_outlook</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<div id="msg_module_microsoft_outlook" position="replace">
|
||||
<div class="row mt16" id="outlook_client_identifier">
|
||||
<label string="ID" for="microsoft_outlook_client_identifier"
|
||||
class="col-lg-3 o_light_label"/>
|
||||
<field name="microsoft_outlook_client_identifier" class="ms-2"
|
||||
placeholder="ID of your Outlook app"/>
|
||||
</div>
|
||||
<div class="row mt16" id="outlook_client_secret">
|
||||
<label string="Secret" for="microsoft_outlook_client_secret"
|
||||
class="col-lg-3 o_light_label"/>
|
||||
<field name="microsoft_outlook_client_secret" password="True" class="ms-2"
|
||||
placeholder="Secret of your Outlook app"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
15
views/templates.xml
Normal file
15
views/templates.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
<template id="microsoft_outlook_oauth_error">
|
||||
<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"/>
|
||||
<br/>
|
||||
<a t-attf-href="/web?#id=#{rec_id}&model=#{model_name}&view_type=form">
|
||||
Go back to your mail server
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user