mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-23 21:02:00 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
46
odoo-bringout-oca-ocb-microsoft_outlook/README.md
Normal file
46
odoo-bringout-oca-ocb-microsoft_outlook/README.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Microsoft Outlook
|
||||
|
||||
Outlook support for incoming / outgoing mail servers
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-microsoft_outlook
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- mail
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Microsoft Outlook
|
||||
- **Version**: 1.1
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `microsoft_outlook`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-microsoft_outlook/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-microsoft_outlook/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Microsoft_outlook Module - microsoft_outlook
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for microsoft_outlook. Configure related models, access rights, and options as needed.
|
||||
17
odoo-bringout-oca-ocb-microsoft_outlook/doc/CONTROLLERS.md
Normal file
17
odoo-bringout-oca-ocb-microsoft_outlook/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [mail](../../odoo-bringout-oca-ocb-mail)
|
||||
4
odoo-bringout-oca-ocb-microsoft_outlook/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-microsoft_outlook/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon microsoft_outlook or install in UI.
|
||||
7
odoo-bringout-oca-ocb-microsoft_outlook/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-microsoft_outlook/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-microsoft_outlook"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-microsoft_outlook"
|
||||
```
|
||||
15
odoo-bringout-oca-ocb-microsoft_outlook/doc/MODELS.md
Normal file
15
odoo-bringout-oca-ocb-microsoft_outlook/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in microsoft_outlook.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class fetchmail_server
|
||||
class ir_mail_server
|
||||
class microsoft_outlook_mixin
|
||||
class res_config_settings
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-microsoft_outlook/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-microsoft_outlook/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: microsoft_outlook. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon microsoft_outlook
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-microsoft_outlook/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-microsoft_outlook/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-microsoft_outlook/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-microsoft_outlook/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-microsoft_outlook/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-microsoft_outlook/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon microsoft_outlook
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-microsoft_outlook/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-microsoft_outlook/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -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
|
||||
|
|
@ -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",
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -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.name),
|
||||
'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')
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "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 ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" قم بتوصيل حساب Outlook الخاص بك "
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" رمز Outlook صالح\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 "خطأ غير معروف. "
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
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 "Gələn Mail Serveri"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"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çt Serveri"
|
||||
|
||||
#. 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 "Server Tipi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "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 ""
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Venelin Stoykov, 2024
|
||||
# Veselina Slavkova, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2025\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -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 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Uredi postavke\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Došlo je do greške prilikom preuzimanja pristupnog tokena. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticirati 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 "URI za provjeru autentičnosti"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
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 "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 "Poslužitelj dolaznih poruka"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"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 "Je li Outlook vjerodajnica konfigurisana"
|
||||
|
||||
#. 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 "Vremenska oznaka isteka Outlook 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 ID klijenta"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook tajna klijenta"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr "Outlook OAuth provjera autentičnosti"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Outlook token za osvježavanje"
|
||||
|
||||
#. 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 vjerodajnice."
|
||||
|
||||
#. 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 povežite se sa svojim Outlook računom prije upotrebe."
|
||||
|
||||
#. 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 "Pročitaj više"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL je potreban za 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 "Tip poslužitelja"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "URL za generiranje autorizacijskog koda iz Outlooka"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Nepoznata greška."
|
||||
|
|
@ -0,0 +1,293 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jonatan Gk, 2022
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Eric Antones <eantones@users.noreply.github.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
# martioodo hola, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: martioodo hola, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connecta el teu compte d'Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('servertype', '!=', 'outlook'), ('microsoftoutlookrefreshtoken', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Testimoni de l'Outlook vàlid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtpauthentication', '!=', 'outlook'), ('microsoftoutlookrefreshtoken', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Testimoni de l'Outlook vàlid\n"
|
||||
" </span>"
|
||||
|
||||
#. 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 "Ajustos 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."
|
||||
|
|
@ -0,0 +1,289 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jakub Smolka, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Připojte svůj účet Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Platný token Outlooku\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Platný token Outlooku\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Při načítání přístupového tokenu došlo k chybě. %s"
|
||||
|
||||
#. 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 "Ověřovací URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
|
||||
#. 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 ""
|
||||
"Propojte svůj účet Outlook s procesem ověřování OAuth.\n"
|
||||
"Ve výchozím nastavení bude moci tento server používat pouze uživatel s odpovídající e-mailovou adresou. Chcete-li rozšířit jeho použití, měli byste nastavit systémový parametr \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Připojte svůj osobní účet Outlook pomocí protokolu OAuth.\n"
|
||||
"Budete přesměrováni na přihlašovací stránku aplikace Outlook, kde přijmete oprávnění."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Vraťte se na svůj poštovní server"
|
||||
|
||||
#. 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ší Outlook aplikace"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server příchozí 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 ""
|
||||
"Nesprávné zabezpečení připojení pro poštovní server Outlook %r. Nastavte jej"
|
||||
" na \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Jsou pověření Outlooku nakonfigurováno"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mail Server"
|
||||
|
||||
#. 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 "Pouze administrátor může propojit e-mailový server Outlooku."
|
||||
|
||||
#. 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 "Přístupový token 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 "Časové razítko vypršení platnosti přístupového tokenu 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 "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 "Outlook OAuth Ověřování"
|
||||
|
||||
#. 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 "Obnovovací token Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Nakonfigurujte prosím své Outlook pověření."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Před použitím se připojte ke svému účtu Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Vyplňte prosím pole „Uživatelské jméno“ svým uživatelským jménem "
|
||||
"Outlooku/Office365 (vaší e-mailovou adresou). Měl by to být stejný účet jako"
|
||||
" ten, který se používá pro token OAuthentication Outlooku."
|
||||
|
||||
#. 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 ""
|
||||
"Ponechte pole pro heslo prázdné pro poštovní server Outlook %r. Proces OAuth"
|
||||
" to nevyžaduje"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
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 "SSL je vyžadován pro server %r."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajný"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Tajný klíč vaší Outlook aplikace"
|
||||
|
||||
#. 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 ""
|
||||
"Chcete-li propojit účet Outlook, nastavte své přihlašovací údaje k rozhraní "
|
||||
"Outlook API v obecných nastaveních."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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 "Adresa URL pro generování autorizačního kódu od společnosti Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Neznámá chyba."
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
# Sammi Iversen <sammi@vkdata.dk>, 2025
|
||||
# Kira Petersen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Kira Petersen, 2025\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Forbind din Outlook konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Udløbsdato for Outlook-adgangstoken"
|
||||
|
||||
#. 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 "Tilslut venligst din Outlook-konto, før du bruger den."
|
||||
|
||||
#. 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 ""
|
||||
"Konfigurer dine Outlook API-legitimationsoplysninger i de generelle "
|
||||
"indstillinger for at linke en Outlook-konto."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,287 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Verbinden Sie Ihr Outlook-Konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook-Token Gültig\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook-Token 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."
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conecte su cuenta de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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, sólo un usuario con una dirección de correo electrónico coincidente podrá utilizar este servidor. Para ampliar su uso, deberá establecer un parámetro de sistema \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conecte su cuenta personal de Outlook mediante OAuth. \n"
|
||||
"Se le redireccionará a la página de inicio de sesión de Outlook para aceptar los permisos."
|
||||
|
||||
#. 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 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 ""
|
||||
"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 expiración 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 "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."
|
||||
|
|
@ -0,0 +1,289 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Lucia Pacheco, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conecte su cuenta de Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token de Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 se 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."
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Anna, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Ühenda Outlook'i konto"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook'i token on kehtiv\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook'i token on kehtiv\n"
|
||||
" </span>"
|
||||
|
||||
#. 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 "Sinu Outlooki rakenduse ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Saabuvate 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 "Microsoft Outlooki mixin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: 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 "Outlooki ligipääsuvõti"
|
||||
|
||||
#. 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 "Outlook OAuth autentimine"
|
||||
|
||||
#. 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 "Outlooki uuendamise võti"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Palun seadista oma Outlooki sisselogimisandmed."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/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 "Saladus"
|
||||
|
||||
#. 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."
|
||||
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"ویرایش تنظیمات\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "با استفاده از <b>پذیرش اعتبار</b>"
|
||||
|
||||
#. 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 "ایراد ناشناخته."
|
||||
|
|
@ -0,0 +1,289 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Johanna Valkonen <miujohanna@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Yhdistä Outlook-tilisi"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook pääsytunniste on oimassa\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook pääsytunniste on voimassa\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 "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."
|
||||
|
|
@ -0,0 +1,289 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2024\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connecter votre compte Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Jeton Outlook valide\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 e-mail correspondante pourra utiliser ce serveur. Pour étendre son utilisation, vous devriez définir un paramètre système \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Connectez votre compte Outlook personnel en utilisant OAuth. \n"
|
||||
"Vous serez redirigé vers la page de connexion Outlook pour accepter les permissions."
|
||||
|
||||
#. 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 "
|
||||
"e-mail) 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."
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# or balmas, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: or balmas, 2025\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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "אימות עם"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "שרת דואר נכנס"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "שרת דואר"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "קרא עוד"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "סוד"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "סוג השרת"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matej Mijoč, 2022
|
||||
# Servisi RAM d.o.o. <support@servisiram.hr>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Servisi RAM d.o.o. <support@servisiram.hr>, 2024\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autenticirati 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 "Postavke"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
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 "Poslužitelj dolaznih poruka"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"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 ""
|
||||
|
||||
#. 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 "Pročitaj više"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
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 poslužitelja"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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 ""
|
||||
|
|
@ -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>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Dombos, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tamás Dombos, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "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 ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,285 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Pengaturan\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook Valid\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook 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."
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Leyndarmál"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2024\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connetti account Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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=\"Modifica impostazioni\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook valido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token Outlook 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 del token di accesso. %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 "Ritorna al server di posta"
|
||||
|
||||
#. 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 dell'applicazione Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server posta in arrivo"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Sicurezza connessione non corretta per il server di posta Outlook %r, "
|
||||
"impostarla su \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Sono configurate le credenziali Outlook"
|
||||
|
||||
#. 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 "Mixin Outlook di Microsoft"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Solo un amministratore può collegare un server di posta Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: 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 di accesso 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 temporale scadenza token di accesso 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 "Chiave privata 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 "Autenticazione OAuth per 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 di aggiornamento Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Configurare le credenziali Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Prima di utilizzare l'account Outlook connettersi all'account."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/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 ""
|
||||
"Lasciare vuoto il campo della password per il server di posta 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 di più"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "Per il server %r è richiesto il protocollo SSL."
|
||||
|
||||
#. 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."
|
||||
|
|
@ -0,0 +1,280 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Outlookアカウントに接続"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlookトークン有効\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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のユーザ名(メールアドレス)を入力して下さい。これは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 "不明なエラー"
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "ម៉ាស៊ីនមេសំបុត្រចូល។"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "ការអានបន្ថែម"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "អាថ៌កំបាំង"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "ប្រភេទម៉ាស៊ីនមេ។"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,279 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linkup <link-up@naver.com>, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sarah Park, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" 유효한 Outlook 토큰\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 "알 수 없는 오류"
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,283 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Arunas V. <arunas@devoro.com>, 2022\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Prijungti Outlook paskyrą"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "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."
|
||||
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Labot uzstādījumus\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "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 "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 "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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -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 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "ഇൻകമിംഗ് മെയിൽ സെർവർ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "മെയിൽ സെർവർ"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "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 ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentiser 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 "Innstillinger"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
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 "Innkommende e-postserver"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"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 ""
|
||||
|
||||
#. 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 "Les mer"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Hemmelighet"
|
||||
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,287 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Verbind je Outlook account"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Geldige Token\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Geldige 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."
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,285 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Piotr Strebski <strebski@gmail.com>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# DanielDemedziuk <daniel.demedziuk@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "<i class=\"fa fa-arrow-right\"/>Połącz swoje konto Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Token Outlook poprawny\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
"Token Outlook poprawny\n"
|
||||
"</span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. 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."
|
||||
|
|
@ -0,0 +1,280 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# cafonso <cafonso62@gmail.com>, 2022
|
||||
# Rita Bastos, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rita Bastos, 2024\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "Associe a sua conta Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
|
@ -0,0 +1,287 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Éder Brito <britoederr@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Carlos Eduardo Nissola Migliavacca <carlos.migliavacca@gmail.com>, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "Conecte à sua conta do Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token do Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Token do Outlook válido\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ocorreu um erro ao resgatar o token de acesso. %s"
|
||||
|
||||
#. 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 ""
|
||||
"Conexão de Segurança Incorreta para o servidor de e-mail Outlook %r. Favor "
|
||||
"alterar para \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Credencial do Outlook está Configurada?"
|
||||
|
||||
#. 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 "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 "Somente o Administrador pode ligar a um servidor de 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 "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 "ID Outlook 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 "Segredo Outlook 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 "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 Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Favor configurar as credenciais do Outlook."
|
||||
|
||||
#. 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 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 ""
|
||||
"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 "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 "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 "Segredo do seu aplicativo Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tipo de Servidor"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configure as suas credenciais Outlook API na configuração geral para "
|
||||
"associar a sua conta Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,284 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Betty Keresztesi, 2024
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Conectați-vă la contul dvs. Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "A apărut o eroare la obținerea token-ului de acces. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentificare cu"
|
||||
|
||||
#. 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 autentificare"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
"Conectați-vă contul Outlook folosind procesul de autentificare OAuth.\n"
|
||||
"Implicit, doar un utilizator cu o adresă de email corespunzătoare va putea folosi acest server. Pentru a extinde utilizarea, trebuie să setați parametrul de sistem \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Conectați-vă contul personal Outlook folosind OAuth.\n"
|
||||
"Veți fi redirecționat către pagina de autentificare Outlook pentru a accepta permisiunile."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Întoarceți-vă la serverul dvs. de e-mail"
|
||||
|
||||
#. 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-ul aplicației Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Server Primire E-mail-uri"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Securitatea conexiunii incorectă pentru serverul de e-mail Outlook %r. Vă "
|
||||
"rugăm să o setați la \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Sunt configurate credențialele Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Server Mail"
|
||||
|
||||
#. 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 "Numai administratorul poate conecta un server 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 "Token-ul de acces Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Timestamp-ul expirării token-ului de acces Outlook"
|
||||
|
||||
#. 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 "Secret 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 "Autentificare 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 "Token-ul de reîmprospătare Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Vă rugăm să configurați credențialele dvs. Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Vă rugăm să vă conectați cu contul Outlook înainte de a-l utiliza."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Vă rugăm să completați câmpul \"Username\" cu numele de utilizator "
|
||||
"Outlook/Office365 (adresa dvs. de email). Acesta trebuie să fie același cont"
|
||||
" ca cel folosit pentru Token-ul de autentificare Outlook."
|
||||
|
||||
#. 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 ""
|
||||
"Vă rugăm să lăsați câmpul parolă gol pentru serverul de e-mail Outlook %r. "
|
||||
"Procesul OAuth nu necesită acest lucru"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Mai mult"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Secretul aplicației Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tip de server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Configurați credențialele API Outlook în setările generale pentru a asocia "
|
||||
"un cont Outlook."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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-ul pentru a genera codul de autorizare din Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Eroare necunoscută."
|
||||
|
|
@ -0,0 +1,292 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Подключите ваш аккаунт Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Возникла ошибка при получении токена доступа. %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 "Идентификатор вашего приложения 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 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 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/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 "Неизвестная ошибка."
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Filip Hanes <filip.hanes@protonmail.com>, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "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 ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "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 Skrivnost"
|
||||
|
||||
#. 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 "Preberi več"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Skrivnost"
|
||||
|
||||
#. 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/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "An error occurred when fetching the access token. %s"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr "Autentifikujte sa"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr "Аутентикациони URI"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Vratite se na svoj mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr "ID vaše Outlook aplikacije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Dolazni mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Da li je Outlook Credential konfigurisan"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr "Mail server"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr "Microsoft Outlook Mixin"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Samo administrator može povezati Outlook mail server."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr "Outlook pristupni token"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr "Outlook Vremenska oznaka isteka pristupnog tokena"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr "Outlook Client Id"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr "Outlook Client Secret"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr "Outlook OAuth Autentifikacija"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr "Outlook Refresh Token"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Molimo konfigurišite svoje Outlook akreditive."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
"Molimo vas da se povežete sa svojim Outlook nalogom pre nego što ga "
|
||||
"koristite."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr "Pročitajte više"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr "SSL is required for the server %r."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr "Tajna vaše Outlook aplikacije"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr "Tup Servera"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr "The URL to generate the authorization code from Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Nepoznata greška."
|
||||
|
|
@ -0,0 +1,291 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Robin Calvin, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "Ett fel uppstod vid hämtning av åtkomstpolletten. %s"
|
||||
|
||||
#. 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 "URI för autentisering"
|
||||
|
||||
#. 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 ""
|
||||
"Anslut ditt Outlook-konto med OAuth-autentiseringsprocessen. \n"
|
||||
"Som standard kommer endast en användare med en matchande e-postadress att kunna använda den här servern. För att utöka användningen bör du ställa in en systemparameter \"mail.default.from\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
"Anslut ditt personliga Outlook-konto med hjälp av OAuth.\n"
|
||||
"Du kommer att omdirigeras till inloggningssidan för Outlook för att acceptera behörigheterna."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Gå tillbaka till din e-postserver"
|
||||
|
||||
#. 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 för din Outlook-app"
|
||||
|
||||
#. 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 ""
|
||||
"Felaktig anslutningssäkerhet för Outlook mailserver %r. Vänligen ställ in "
|
||||
"den på \"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Är Outlook-legitimationen konfigurerad"
|
||||
|
||||
#. 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 "Endast administratören kan länka en Outlook-mailserver."
|
||||
|
||||
#. 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 Access Token Expiration Timestamp"
|
||||
|
||||
#. 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 "Outlook OAuth-autentisering"
|
||||
|
||||
#. 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 "Vänligen konfigurera dina Outlook-uppgifter."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Anslut till ditt Outlook-konto innan du använder det."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/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 ""
|
||||
"Fyll i fältet \"Användarnamn\" med ditt Outlook/Office365-användarnamn (din "
|
||||
"e-postadress). Detta bör vara samma konto som det som används för 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 ""
|
||||
"Lämna lösenordsfältet tomt för Outlook mail server %r. OAuth-processen "
|
||||
"kräver inte det"
|
||||
|
||||
#. 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 "SSL krävs för servern %r."
|
||||
|
||||
#. 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 "Hemligheten bakom din 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 ""
|
||||
"Ställ in dina Outlook API-autentiseringsuppgifter i de allmänna "
|
||||
"inställningarna för att länka ett Outlook-konto."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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:en för att generera auktoriseringskoden från Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Okänt fel."
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:23+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__smtp_authentication
|
||||
msgid "Authenticate with"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "Authentication URI"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your Outlook account with the OAuth Authentication process. \n"
|
||||
"By default, only a user with a matching email address will be able to use this server. To extend its use, you should set a \"mail.default.from\" system parameter."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connect your personal Outlook account using OAuth. \n"
|
||||
"You will be redirected to the Outlook login page to accept the permissions."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "ID of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_ir_mail_server
|
||||
msgid "Mail Server"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_microsoft_outlook_mixin
|
||||
msgid "Microsoft Outlook Mixin"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token
|
||||
msgid "Outlook Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_access_token_expiration
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_access_token_expiration
|
||||
msgid "Outlook Access Token Expiration Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_identifier
|
||||
msgid "Outlook Client Id"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_res_config_settings__microsoft_outlook_client_secret
|
||||
msgid "Outlook Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__fetchmail_server__server_type__outlook
|
||||
#: model:ir.model.fields.selection,name:microsoft_outlook.selection__ir_mail_server__smtp_authentication__outlook
|
||||
msgid "Outlook OAuth Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__microsoft_outlook_refresh_token
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_refresh_token
|
||||
msgid "Outlook Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please fill the \"Username\" field with your Outlook/Office365 username "
|
||||
"(your email address). This should be the same account as the one used for "
|
||||
"the Outlook OAuthentication Token."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please leave the password field empty for Outlook mail server %r. The OAuth "
|
||||
"process does not require it"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/fetchmail_server.py:0
|
||||
#, python-format
|
||||
msgid "SSL is required for the server %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.res_config_settings_view_form
|
||||
msgid "Secret of your Outlook app"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__server_type
|
||||
msgid "Server Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"Setup your Outlook API credentials in the general settings to link a Outlook"
|
||||
" account."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_microsoft_outlook_mixin__microsoft_outlook_uri
|
||||
msgid "The URL to generate the authorization code from Outlook"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This server %r can only be used for your personal email address. Please fill"
|
||||
" the \"from_filter\" field with %r."
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,279 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"แก้ไขการตั้งค่า\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "เกิดข้อผิดพลาดขณะดึงข้อมูลโทเค็นเพื่อการเข้าถึง %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 "Outgoing Mail Server"
|
||||
|
||||
#. 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 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 "เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ"
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# İlknur Gözütok, 2023
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Outlook hesabınızı bağlayın"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook belirteci geçerli\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook belirteci geçerli\n"
|
||||
" </span>"
|
||||
|
||||
#. 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."
|
||||
|
|
@ -0,0 +1,287 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Підключіть ваш обліковий запис Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Дійсний токен Outlook\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 "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 "Невідома помилка."
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Thin Tran <trvathin@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Duy BQ <duybq86@gmail.com>, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Kết nối tài khoản Outlook của bạn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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=\"Chỉnh sửa cài đặt\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "An error occurred when fetching the access token. %s"
|
||||
msgstr "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ấ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 ""
|
||||
"Kết nối tài khoản Outlook của bạn với quy trình xác thực OAuth.\n"
|
||||
"Theo mặc định, chỉ người dùng có địa chỉ email phù hợp mới có thể sử dụng máy chủ này. Để mở rộng khả năng sử dụng, bạn nên thiết lập tham số hệ thống \"mail.default.from\"."
|
||||
|
||||
#. 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 ""
|
||||
"Kết nối tài khoản Outlook cá nhân của bạn bằng OAuth.\n"
|
||||
"Bạn sẽ được chuyển hướng đến trang đăng nhập Outlook để chấp nhận quyền."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.microsoft_outlook_oauth_error
|
||||
msgid "Go back to your mail server"
|
||||
msgstr "Quay lại Mail server của bạn"
|
||||
|
||||
#. 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 ứng dụng Outlook của bạn"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model,name:microsoft_outlook.model_fetchmail_server
|
||||
msgid "Incoming Mail Server"
|
||||
msgstr "Máy chủ thư đến"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/ir_mail_server.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Incorrect Connection Security for Outlook mail server %r. Please set it to "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
msgstr ""
|
||||
"Bảo mật kết nối không chính xác cho máy chủ thư Outlook %r. Vui lòng đặt là "
|
||||
"\"TLS (STARTTLS)\"."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_fetchmail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_ir_mail_server__is_microsoft_outlook_configured
|
||||
#: model:ir.model.fields,field_description:microsoft_outlook.field_microsoft_outlook_mixin__is_microsoft_outlook_configured
|
||||
msgid "Is Outlook Credential Configured"
|
||||
msgstr "Chứng thực Outlook đã được cấu hình"
|
||||
|
||||
#. 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 "Mixin Microsoft Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Only the administrator can link an Outlook mail server."
|
||||
msgstr "Chỉ tài khoản Admin mới có thể liên kết một Mail server Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: 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 "Dấu thời gian hết hạn token truy cập 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 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ã bí mật của máy 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 "Xác minh 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 "Làm mới Khóa chức thực Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please configure your Outlook credentials."
|
||||
msgstr "Hãy cấu hình chứng thực cho Outlook của bạn."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Please connect with your Outlook account before using it."
|
||||
msgstr "Vui lòng kết nối với tài khoản Outlook của bạn trước khi sử dụng."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/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 ""
|
||||
"Vui lòng điền tên người dùng Outlook/Office365 của bạn (địa chỉ email của "
|
||||
"bạn) vào trường \"Tên người dùng\". Bạn nên chọn cùng tài khoản với tài "
|
||||
"khoản được sử dụng cho Token OAuth 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 ""
|
||||
"Vui lòng để trống trường mật khẩu cho máy chủ thư Outlook %r. Quá trình "
|
||||
"OAuth không yêu cầu mật khẩu."
|
||||
|
||||
#. 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 "SSL được yêu cầu cho máy chủ %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 "Mã bí mật ứng dụng Outlook của bạn"
|
||||
|
||||
#. 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 ""
|
||||
"Thiết lập thông tin xác thực API Outlook trong cài đặt chung để liên kết tài"
|
||||
" khoản Gmail."
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_fetchmail_server__microsoft_outlook_uri
|
||||
#: model:ir.model.fields,help:microsoft_outlook.field_ir_mail_server__microsoft_outlook_uri
|
||||
#: 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ã uỷ quyền từ Outlook"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_outlook/models/microsoft_outlook_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Unknown error."
|
||||
msgstr "Lỗi không xác định."
|
||||
|
|
@ -0,0 +1,280 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# Chloe Wang, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Chloe Wang, 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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr "连接您的Outlook账号"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
msgstr "<i class=\"fa fa-cog\" title=\"Edit Settings\"/>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.fetchmail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 令牌有效\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 用户名(电子邮件地址)。该账户应与 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 "服务器%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 "未知错误."
|
||||
|
|
@ -0,0 +1,280 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_outlook
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Pak Wai Ho, 2023
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\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-arrow-right\"/>\n"
|
||||
" Connect your Outlook account"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 連結您的Outlook帳戶"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.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
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook 代碼有效\n"
|
||||
" </span>"
|
||||
|
||||
#. module: microsoft_outlook
|
||||
#: model_terms:ir.ui.view,arch_db:microsoft_outlook.ir_mail_server_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" class=\"badge text-bg-success\">\n"
|
||||
" Outlook Token Valid\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}\" 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 "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/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 "未知錯誤"
|
||||
|
|
@ -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
|
||||
|
|
@ -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()
|
||||
|
|
@ -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)
|
||||
|
|
@ -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/',
|
||||
)
|
||||
|
|
@ -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')
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" ?><svg id="Capa_1" style="enable-background:new 0 0 128 128;" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">
|
||||
.st0{fill:#21A365;}
|
||||
.st1{fill:#107C41;}
|
||||
.st2{fill:#185B37;}
|
||||
.st3{fill:#33C481;}
|
||||
.st4{fill:#17864C;}
|
||||
.st5{fill:#FFFFFF;}
|
||||
.st6{fill:#036C70;}
|
||||
.st7{fill:#1A9BA1;}
|
||||
.st8{fill:#37C6D0;}
|
||||
.st9{fill:#04878B;}
|
||||
.st10{fill:#4F59CA;}
|
||||
.st11{fill:#7B82EA;}
|
||||
.st12{fill:#4C53BB;}
|
||||
.st13{fill:#0F78D5;}
|
||||
.st14{fill:#29A7EB;}
|
||||
.st15{fill:#0358A8;}
|
||||
.st16{fill:#0F79D6;}
|
||||
.st17{fill:#038387;}
|
||||
.st18{fill:#048A8E;}
|
||||
.st19{fill:#C8421D;}
|
||||
.st20{fill:#FF8F6A;}
|
||||
.st21{fill:#ED6B47;}
|
||||
.st22{fill:#891323;}
|
||||
.st23{fill:#AF2131;}
|
||||
.st24{fill:#C94E60;}
|
||||
.st25{fill:#E08195;}
|
||||
.st26{fill:#B42839;}
|
||||
.st27{fill:#0464B8;}
|
||||
.st28{fill:#0377D4;}
|
||||
.st29{fill:#4FD8FF;}
|
||||
.st30{fill:#1681D7;}
|
||||
.st31{fill:#0178D4;}
|
||||
.st32{fill:#042071;}
|
||||
.st33{fill:#168FDE;}
|
||||
.st34{fill:#CA64EA;}
|
||||
.st35{fill:#7E1FAF;}
|
||||
.st36{fill:#AE4BD5;}
|
||||
.st37{fill:#9332BF;}
|
||||
.st38{fill:#7719AA;}
|
||||
.st39{fill:#0078D4;}
|
||||
.st40{fill:#1490DF;}
|
||||
.st41{fill:#0364B8;}
|
||||
.st42{fill:#28A8EA;}
|
||||
.st43{fill:#41A5ED;}
|
||||
.st44{fill:#2C7BD5;}
|
||||
.st45{fill:#195ABE;}
|
||||
.st46{fill:#103E91;}
|
||||
.st47{fill:#2166C3;}
|
||||
.st48{opacity:0.2;}
|
||||
</style><g><path class="st27" d="M120.2,22.8H34.2V9.1C34.2,6.8,36,5,38.2,5h77.9c2.3,0,4.1,1.8,4.1,4.1V22.8z"/><rect class="st28" height="26.6" width="28.7" x="34.2" y="22.8"/><rect class="st14" height="26.6" width="28.7" x="62.9" y="22.8"/><rect class="st29" height="26.6" width="28.7" x="91.6" y="22.8"/><rect class="st30" height="26.6" width="28.7" x="34.2" y="49.4"/><rect class="st31" height="26.6" width="28.7" x="62.9" y="49.4"/><rect class="st14" height="26.6" width="28.7" x="91.6" y="49.4"/><rect class="st27" height="26.6" width="28.7" x="62.9" y="75.9"/><rect class="st30" height="26.6" width="28.7" x="91.6" y="75.9"/></g><path class="st32" d="M126.9,69.1l-6.6,3.9V61.8l6.5,3.6C128.3,66.1,128.3,68.2,126.9,69.1z"/><path class="st33" d="M126.9,69.1l-0.6,0.4l0,0l-0.7,0.4l-5.3,3.1v-0.1l-88.4,50.6h89.1c3.8,0,6.8-3.1,6.8-6.8l0.1-49.4 C128,67.9,127.6,68.7,126.9,69.1z"/><g><path class="st14" d="M122,123.5H32.8c-3.8,0-6.8-3.1-6.8-6.8V68.5L122,123.5z"/></g><path class="st30" d="M59,96.5h-53c-3.5,0-6.4-2.9-6.4-6.4V37.9c0-3.5,2.9-6.4,6.4-6.4h53c3.5,0,6.4,2.9,6.4,6.4v52.2 C65.4,93.6,62.6,96.5,59,96.5z"/><g><path class="st5" d="M32.5,82.9c-10.3,0-16.8-7.8-16.8-18.2c0-11,7.1-18.8,17.3-18.8c10.6,0,16.8,7.9,16.8,18.1 C49.9,76.1,42.5,82.9,32.5,82.9L32.5,82.9z M32.9,77.7c6.4,0,10-5.9,10-13.4c0-6.8-3.4-13.1-10-13.1s-10.1,6.2-10.1,13.4 S26.4,77.7,32.9,77.7L32.9,77.7z"/></g><path class="st48" d="M65.5,37.3c0,0.2,0,0.4,0,0.6v52.2c0,3.5-2.9,6.4-6.4,6.4H26v5.7h38.4c3.5,0,6.4-2.9,6.4-6.4V43.6 C70.8,40.4,68.5,37.7,65.5,37.3z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_fetchmail_outlook
|
||||
|
|
@ -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',
|
||||
})
|
||||
|
|
@ -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 attrs="{'invisible': [('server_type', '!=', 'outlook')]}"
|
||||
class="d-flex flex-row align-items-center" colspan="2">
|
||||
<span attrs="{'invisible': ['|', ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}"
|
||||
class="badge text-bg-success">
|
||||
Outlook Token Valid
|
||||
</span>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '!=', False)]}">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
Connect your Outlook account
|
||||
</button>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0 ms-2"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('server_type', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}">
|
||||
<i class="fa fa-cog" title="Edit Settings"/>
|
||||
</button>
|
||||
<button class="alert alert-warning d-block mt-2 text-start"
|
||||
icon="fa-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
attrs="{'invisible': ['|', ('is_microsoft_outlook_configured', '=', True), ('server_type', '!=', 'outlook')]}">
|
||||
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -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 attrs="{'invisible': [('smtp_authentication', '!=', 'outlook')]}"
|
||||
class="d-flex flex-row align-items-center" colspan="8">
|
||||
<span attrs="{'invisible': ['|', ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}"
|
||||
class="badge text-bg-success">
|
||||
Outlook Token Valid
|
||||
</span>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '!=', False)]}">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
Connect your Outlook account
|
||||
</button>
|
||||
<button type="object"
|
||||
name="open_microsoft_outlook_uri" class="btn-link px-0 ms-2"
|
||||
attrs="{'invisible': ['|', '|', ('is_microsoft_outlook_configured', '=', False), ('smtp_authentication', '!=', 'outlook'), ('microsoft_outlook_refresh_token', '=', False)]}">
|
||||
<i class="fa fa-cog" title="Edit Settings"/>
|
||||
</button>
|
||||
<button class="alert alert-warning d-block mt-2 text-start"
|
||||
icon="fa-arrow-right" type="action" role="alert"
|
||||
name="%(base.res_config_setting_act_window)d"
|
||||
attrs="{'invisible': ['|', ('is_microsoft_outlook_configured', '=', True), ('smtp_authentication', '!=', 'outlook')]}">
|
||||
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
<field name="smtp_authentication_info" position="after">
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/email_communication/email_servers.html?highlight=outgoing email server#use-a-default-from-email-address"
|
||||
attrs="{'invisible': [('smtp_authentication', '!=', 'outlook')]}" target="_blank">
|
||||
Read More
|
||||
</a>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>
|
||||
42
odoo-bringout-oca-ocb-microsoft_outlook/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-microsoft_outlook/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-microsoft_outlook"
|
||||
version = "16.0.0"
|
||||
description = "Microsoft Outlook - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-mail>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["microsoft_outlook"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue