mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-21 17:21:59 +02:00
19.0 vanilla
This commit is contained in:
parent
ba20ce7443
commit
768b70e05e
2357 changed files with 1057103 additions and 712486 deletions
|
|
@ -13,37 +13,14 @@ pip install odoo-bringout-oca-ocb-microsoft_account
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- base_setup
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Microsoft Users
|
||||
- **Version**: N/A
|
||||
- **Category**: Hidden/Tools
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `microsoft_account`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/microsoft_account
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -12,5 +12,6 @@ The module adds Microsoft user in res user.
|
|||
'data': [
|
||||
'data/microsoft_account_data.xml',
|
||||
],
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,12 @@ class MicrosoftAuth(http.Controller):
|
|||
raise BadRequest()
|
||||
|
||||
if kw.get('code'):
|
||||
access_token, refresh_token, ttl = request.env['microsoft.service']._get_microsoft_tokens(kw['code'], service)
|
||||
base_url = request.httprequest.url_root.strip('/') or request.env.user.get_base_url()
|
||||
access_token, refresh_token, ttl = request.env['microsoft.service']._get_microsoft_tokens(
|
||||
kw['code'],
|
||||
service,
|
||||
redirect_uri=f'{base_url}/microsoft_account/authentication'
|
||||
)
|
||||
request.env.user._set_microsoft_auth_tokens(access_token, refresh_token, ttl)
|
||||
return request.redirect(url_return)
|
||||
elif kw.get('error'):
|
||||
|
|
|
|||
|
|
@ -1,69 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-13 12:17+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"الطريقة غير مدعومة [%s] ليست واحدة من [GET, POST, PUT, PATCH or DELETE]! "
|
||||
"الطريقة غير مدعومة [%s] ليست واحدة من [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr "رمز تحديث Microsoft "
|
||||
msgstr "رمز تحديث Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "خدمة Microsoft "
|
||||
msgstr "خدمة Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr "صلاحية رمز Microsoft "
|
||||
msgstr "صلاحية رمز Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr "رمز مستخدم Microsoft "
|
||||
msgstr "رمز مستخدم Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"حدث خطأ أثناء إنشاء كلمة الرمز الخاص بك. قد يكون رمز التفويض غير صالح "
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"حدث خطأ ما خلال إنشاء الرمز الخاص بك. قد يكون رمز التفويض غير صالح أو نتهت "
|
||||
"مدة صلاحيته بالفعل "
|
||||
msgstr "حدث خطأ أثناء إنشاء كلمة الرمز الخاص بك. قد يكون رمز التفويض غير صالح"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,27 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Göstəriləcək Ad"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,21 +58,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: aleksandar ivanov, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:43+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Методът не е поддържан [%s] не и във [ВЗЕМЕТЕ, ПУБЛИКУВАЙТЕ, ПОСТАВЕТЕ, "
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,16 +69,6 @@ msgstr ""
|
|||
"Нещо се обърка при създаването на токена Ви. Възможно е кодът Ви за "
|
||||
"упълномощаване да е невалиден"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Нещо се обърка при създаването на токена Ви. Възможно е кодът Ви за "
|
||||
"упълномощаване да е невалиден или вече да е изтекъл"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,78 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
# * microsoft_account
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda nije podržana [%s] nije u [GET, POST, PUT, PATCH ili DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr "Osvježi Microsoft token"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "Microsoft servis"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr "Valjanost Microsoft tokena"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr "Microsoft korisnički token"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py
|
||||
#, python-format
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Nešto nije prošlo u redu pri generiranju vašeg tokena. Možda je neispravan "
|
||||
"Kod Autorizacije."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Nešto nije prošlo u redu pri generiranju vašeg tokena. Možda je neispravan "
|
||||
"Kod Autorizacije ili je već istekao."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,29 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Arnau Ros, 2022
|
||||
# marcescu, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:40+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Mètode no suportat [%s] no en [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -48,26 +59,23 @@ msgid "Microsoft User token"
|
|||
msgstr "Token d'usuari de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Alguna cosa ha anat malament durant la generació del token. Pot ser el teu "
|
||||
"Codi d'Autorització no és vàlid. "
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Alguna cosa ha anat malament durant la generació del token. Pot ser el teu "
|
||||
"Codi d'Autorització no és vàlid o ha expirat."
|
||||
"Codi d'Autorització no és vàlid."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Alguna cosa ha anat malament durant la generació del token. Pot ser el "
|
||||
#~ "teu Codi d'Autorització no és vàlid o ha expirat."
|
||||
|
|
|
|||
|
|
@ -1,35 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký, 2022
|
||||
# Jakub Smolka, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-29 09:08+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda není podporována [%s] v [GET, POST, PUT, PATCH nebo DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
msgstr "Obnovovací token Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
|
|
@ -39,32 +52,22 @@ msgstr "Microsoft služba"
|
|||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
msgstr "Platnost tokenu Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
msgstr "Token uživatele Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Během vaší generace tokenů se něco pokazilo. Možná je váš autorizační kód "
|
||||
"neplatný"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Během vaší generace tokenů se něco pokazilo. Možná je váš autorizační kód "
|
||||
"neplatný nebo již vypršel"
|
||||
"Během generování vašeho tokenu se něco pokazilo. Možná je váš autorizační "
|
||||
"kód neplatný"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,27 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kira Petersen François (peti)" <peti@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:47+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metode ikke understøttet [%s] ikke i [GET, POST, PUT, PATCH, eller DELETE]!"
|
||||
|
|
@ -47,8 +61,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft Bruger Token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -56,16 +70,6 @@ msgstr ""
|
|||
"Noget gik galt under din token generering. Måske er din autoriserings kode "
|
||||
"ugyldig"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Noget gik galt under din token generering. Måske er din autoriserings kode "
|
||||
"ugyldig eller allerede udløbet"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-31 12:50+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Methode nicht unterstützt [%s] nicht in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
|
@ -47,24 +60,14 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft-Benutzertoken"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Während der Generierung des Tokens ist ein Fehler aufgetreten. Eventuell ist"
|
||||
" Ihr Autorisierungscode ungültig."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Während der Generierung des Tokens ist ein Fehler aufgetreten. Eventuell ist"
|
||||
" Ihr Autorisierungscode ungültig oder bereits abgelaufen."
|
||||
"Während der Generierung des Tokens ist ein Fehler aufgetreten. Eventuell ist "
|
||||
"Ihr Autorisierungscode ungültig."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,23 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:45+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -42,22 +59,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "Χρήστης"
|
||||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-23 12:57+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"¡Método no compatible [%s] no está en [GET, POST, PUT, PATCH o DELETE]!"
|
||||
|
|
@ -35,7 +47,7 @@ msgstr "Token de actualización de Microsoft"
|
|||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "Servicio de Microsoft "
|
||||
msgstr "Servicio de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
|
|
@ -48,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Token de usuario de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +69,6 @@ msgstr ""
|
|||
"Ocurrió un error al generar el token. Es probable que el código de "
|
||||
"autorización no sea válido."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Ocurrió un error al generar el token. Es probable que el código de "
|
||||
"autorización no sea válido o haya vencido."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-30 17:00+0000\n"
|
||||
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_account/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Método no compatible, [%s] no se encuentra en [GET, POST, PUT, PATCH o "
|
||||
|
|
@ -31,12 +43,12 @@ msgstr ""
|
|||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr "Token de actualización de Microsoft"
|
||||
msgstr "Actualizar token de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "Servicio de Microsoft "
|
||||
msgstr "Servicio de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
|
|
@ -49,8 +61,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Token de usuario de Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,17 +70,14 @@ msgstr ""
|
|||
"Ocurrió un error al generar el token. Es probable que el código de "
|
||||
"autorización no sea válido."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Ocurrió un error al generar el token. Es probable que el código de "
|
||||
"autorización no sea válido o haya vencido."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Ocurrió un error al generar el token. Es probable que el código de "
|
||||
#~ "autorización no sea válido o haya vencido."
|
||||
|
|
@ -1,29 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/et/>\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuvatav nimi"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Meetodit ei toetata [%s] ei ole [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -48,8 +58,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft'i kasutaja Token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +67,6 @@ msgstr ""
|
|||
"Teie \"token\"-i genereerimisel läks midagi valesti. Võimalik, et teie "
|
||||
"autoriseerimiskood on kehtetu."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Teie \"token\"-i genereerimisel läks midagi valesti. Võimalik, et teie "
|
||||
"autoriseerimiskood on vale või aegunud."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:48+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/fa/>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "روش پشتیبانی نمیشود [%s] در [GET، POST، PUT، PATCH یا DELETE] نیست!"
|
||||
|
||||
|
|
@ -47,23 +58,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"در طول تولید توکن شما چیزی اشتباه رخ داد. ممکن است کد مجوز شما نامعتبر باشد "
|
||||
"یا قبلاً به پایان رسیده باشد"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metodia [%s] ei löydy tuetuista metodeista [GET, POST, PUT, PATCH or "
|
||||
"DELETE]!"
|
||||
"Metodia [%s] ei löydy tuetuista metodeista [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft-käyttäjätunniste"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,16 +69,6 @@ msgstr ""
|
|||
"Jotain meni pieleen tokenin luonnissa. Valtuutusavain saattaa olla "
|
||||
"virheellinen"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Jotain meni pieleen tokenin luonnissa. Valtuutusavain saattaa olla "
|
||||
"vanhentunut"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Manon Rondou (ronm)" <ronm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-15 09:14+0000\n"
|
||||
"Last-Translator: \"Manon Rondou (ronm)\" <ronm@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Méthode non prise en charge [%s] pas dans [GET, POST, PUT, PATCH or DELETE] "
|
||||
"!"
|
||||
"Méthode non prise en charge [%s] pas dans [GET, POST, PUT, PATCH or DELETE] !"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Jeton d'utilisateur Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,16 +69,6 @@ msgstr ""
|
|||
"Une erreur est survenue durant la génération du jeton. Votre code "
|
||||
"d'autorisation est peut-être invalide."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Une erreur est survenue durant la génération du jeton. Votre code "
|
||||
"d'autorisation est peut-être invalide ou expiré."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,67 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Yihya Hugirat <hugirat@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"הפעולה [%s] לא נמצאת בפעולות האפשריות [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
|
@ -48,21 +60,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr "אירעה שגיאה במהלך יצירת הטוקן שלך. יתכן כי קוד האישור שלך לא תקין"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "אירעה שגיאה במהלך יצירת הטוקן שלך. יתכן כי קוד האישור שלך פג תוקף"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:47+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -49,21 +60,11 @@ msgstr ""
|
|||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:43+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/hr/>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda nije podržana [%s] nije u [GET, POST, PUT, PATCH ili DELETE]!"
|
||||
|
||||
|
|
@ -47,8 +59,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft korisnički token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -56,16 +68,6 @@ msgstr ""
|
|||
"Nešto nije prošlo u redu pri generiranju vašeg tokena. Možda je neispravan "
|
||||
"Kod Autorizacije."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Nešto nije prošlo u redu pri generiranju vašeg tokena. Možda je neispravan "
|
||||
"Kod Autorizacije ili je već istekao."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: krnkris, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:45+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Ez a mód [%s] nem támogatott ezekben [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
|
@ -48,26 +60,23 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Valami rosszul sikerült a token létrehozásakor. Talán az engedélyezési kódja"
|
||||
" érvénytelen"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Valami rosszul sikerült a token létrehozásakor. Talán az engedélyezési kódja"
|
||||
" már lejárt"
|
||||
"Valami rosszul sikerült a token létrehozásakor. Talán az engedélyezési kódja "
|
||||
"érvénytelen"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Valami rosszul sikerült a token létrehozásakor. Talán az engedélyezési "
|
||||
#~ "kódja már lejárt"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Abe Manyo (abem)" <abem@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 06:08+0000\n"
|
||||
"Last-Translator: \"Abe Manyo (abem)\" <abem@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metode tidak didukung [%s] tidak di dalam [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
|
@ -48,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Token User Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +69,6 @@ msgstr ""
|
|||
"Terdapat kesalahan pada pembuatan token Anda. Mungkin Kode Otorisasi Anda "
|
||||
"tidak valid"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Terjadi kesalahan selama pembuatan token Anda. Mungkin Kode Otorisasi Anda "
|
||||
"tidak valid atau sudah kadaluwarsa"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,67 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marianna Ciofani (cima)" <cima@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-15 13:19+0000\n"
|
||||
"Last-Translator: \"Marianna Ciofani (cima)\" <cima@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metodo non supportato [%s] non è [GET, POST, PUT, PATCH oppure DELETE]!"
|
||||
|
|
@ -48,24 +60,14 @@ msgid "Microsoft User token"
|
|||
msgstr "Token utente Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"La generazione del token non è andata a buon fine. È probabile che il codice"
|
||||
" di autorizzazione non sia valido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"La generazione del token non è andata a buon fine. È probabile che il codice"
|
||||
" di autorizzazione non sia valido o sia già scaduto"
|
||||
"La generazione del token non è andata a buon fine. È probabile che il codice "
|
||||
"di autorizzazione non sia valido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,31 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 01:45+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "サポートされていないメソッド [%s]これらは[GET、POST、PUT、PATCH、DELETE]内にありません!"
|
||||
msgstr ""
|
||||
"サポートされていないメソッド [%s]これらは[GET、POST、PUT、PATCH、DELETE]内に"
|
||||
"ありません!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -48,20 +61,14 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoftユーザトークン"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr "トークンの生成中に何か問題が発生しました。 承認コードが無効である可能性があります"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "トークンの生成中に何か問題が発生しました。 承認コードが無効であるかすでに失効している可能性があります "
|
||||
msgstr ""
|
||||
"トークンの生成中に何か問題が発生しました。 承認コードが無効である可能性があり"
|
||||
"ます"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,23 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -42,21 +56,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -1,71 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "មិនគាំទ្រវិធីសាស្ត្រ [%s] នៅក្នុង [GET, POST, PUT, PATCH ឬលុប] ទេ!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"មានបញ្ហាអ្វីមួយកើតឡើងក្នុងជំនាន់ជំនាន់អ្នកតំណាង។ "
|
||||
"ប្រហែលជាលេខកូដអនុញ្ញាតរបស់អ្នកមិនត្រឹមត្រូវ"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"មានបញ្ហាអ្វីមួយកើតឡើងក្នុងជំនាន់ជំនាន់អ្នកតំណាង។ "
|
||||
"ប្រហែលជាលេខកូដការអនុញ្ញាតរបស់អ្នកមិនត្រឹមត្រូវឬផុតកំណត់"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
|
|
@ -1,29 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-17 19:01+0000\n"
|
||||
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "[%s] 메서드가 지원되지 않습니다. [GET, POST, PUT, PATCH 또는 DELETE]!"
|
||||
|
||||
|
|
@ -48,20 +59,13 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft 사용자 토큰"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr "토큰 생성 중에 문제가 발생했습니다. 인증 코드가 잘못되었을 수 있습니다."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "토큰 생성 중에 문제가 발생했습니다. 인증 코드가 잘못되었거나 이미 만료되었을 수 있습니다."
|
||||
msgstr ""
|
||||
"토큰 생성 중에 문제가 발생했습니다. 인증 코드가 잘못되었을 수 있습니다."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,27 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_account/ckb/>\n"
|
||||
"Language: ku\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,22 +58,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
msgstr "بەکارهێنەر"
|
||||
|
|
@ -1,31 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Monika Raciunaite <monika.raciunaite@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:40+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Būdas nepalaikomas [%s] jei ne tarp [GET, POST, PUT, PATCH ar DELETE]!"
|
||||
msgstr "Būdas nepalaikomas [%s] jei ne tarp [GET, POST, PUT, PATCH ar DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -48,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +69,6 @@ msgstr ""
|
|||
"Generuojant prieigos kodą įvyko klaida. Galbūt jūsų patvirtinimo kodas yra "
|
||||
"neteisingas."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Generuojant prieigos kodą įvyko klaida. Galbūt jūsų patvirtinimo kodas "
|
||||
"nebegalioja ar yra neteisingas."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2022\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,22 +55,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -15,10 +15,21 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -45,21 +56,11 @@ msgstr ""
|
|||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,67 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "മൈക്രോസോഫ്റ്റ് സേവനം"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
|
@ -1,27 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:48+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/mn/>\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"[GET, POST, PUT, PATCH, DELETE] дотор ороогүй дэмжигдээгүй функц [%s] байна!"
|
||||
|
|
@ -47,8 +59,8 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -56,16 +68,6 @@ msgstr ""
|
|||
"Тасалбарыг боловсруулах үед алдаа гарлаа. Магадгүй таны Баталгаажуулах Код "
|
||||
"буруу байх"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Тасалбарыг боловсруулах үед алдаа гарлаа. Магадгүй таны Баталгаажуулах Код "
|
||||
"буруу эсвэл хугацаа нь дууссан байх"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:47+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/my/>\n"
|
||||
"Language: my\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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "နံပါတ်"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,22 +58,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
msgstr "အသုံးပြုသူ"
|
||||
|
|
@ -1,27 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:45+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metode ikke støttet [%s] ikke i [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -46,21 +59,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-23 09:17+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Methode niet ondersteund [%s] niet in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
|
@ -48,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft gebruiker token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +69,6 @@ msgstr ""
|
|||
"Er is iets fout gegaan tijdens het genereren van het token. Mogelijk is je "
|
||||
"authenticatie code foutief"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Er is iets fout gegaan tijdens het genereren van het token. Mogelijk is je "
|
||||
"authenticatie code foutief of al vervallen"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,63 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Dariusz Żbikowski <darek@krokus.com.pl>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Piotr Szlązak <szlazakpiotr@gmail.com>, 2022\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-17 12:45+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda bez wsparcia [%s] brak w [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Token użytkownika Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,16 +69,6 @@ msgstr ""
|
|||
"Coś poszło nie tak podczas generowania znaczka. Może twój autoryzowany kod "
|
||||
"jest zły"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Coś poszło nie tak podczas generowania tokena. Może twój kod autoryzacji "
|
||||
"jest zły"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,73 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Castro Silva <pedrocs@exo.pt>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2022\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Método não suportado [%s] não é um de [GET, POST, PUT, PATCH or DELETE]!"
|
||||
"Método não suportado [%s] não está em [GET, POST, PUT, PATCH ou DELETE]]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
msgstr "Token de atualização da Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
msgstr "Serviço Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
msgstr "Validade do token da Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
msgstr "Token de usuário da Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Algo correu mal durante a geração do token. É possível que o seu Código de "
|
||||
"Autorização seja inválido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Algo correu mal durante a geração do token. É possível que o seu Código de "
|
||||
"Autorização seja inválido ou tenha expirado"
|
||||
"Erro ao gerar seu token de acesso. Talvez seu código de autorização seja "
|
||||
"inválido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
msgstr "Usuário"
|
||||
|
|
|
|||
|
|
@ -1,30 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Maitê Dietze (madi)" <madi@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Kevilyn Rosa, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-28 13:12+0000\n"
|
||||
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_account/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Exibir nome"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Método não suportado [%s] não em [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Método não suportado [%s] não está em [GET, POST, PUT, PATCH ou DELETE]]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -47,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Token de usuário da Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -56,17 +69,14 @@ msgstr ""
|
|||
"Erro ao gerar seu token de acesso. Talvez seu código de autorização seja "
|
||||
"inválido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Erro ao gerar seu token de acesso. Talvez seja porque seu código de "
|
||||
"autorização seja inválido"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Erro ao gerar seu token de acesso. Talvez seja porque seu código de "
|
||||
#~ "autorização seja inválido"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:42+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metoda nu este suportată [%s] nu este în [GET, POST, PUT, PATCH sau DELETE]!"
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Jeton Utilizator Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,17 +69,7 @@ msgstr ""
|
|||
"Ceva nu a funcționat în timpul generației dvs. de simboluri. Poate că Codul "
|
||||
"dvs. de autorizare nu este valid"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Ceva nu a funcționat în timpul generației dvs. de simboluri. Poate că Codul "
|
||||
"dvs. de autorizare este nevalid sau deja expirat"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
msgstr "Utilizator"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:48+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Метод не поддерживается [ %s ] не в [GET, POST, PUT, PATCH или DELETE]!"
|
||||
msgstr "Метод не поддерживается [%s] не в [GET, POST, PUT, PATCH или DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -49,8 +62,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Токен пользователя Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,17 +71,14 @@ msgstr ""
|
|||
"Что-то пошло не так во время генерации токенов. Возможно, ваш код "
|
||||
"авторизации недействителен."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Что-то пошло не так во время генерации токенов. Возможно, ваш код "
|
||||
"авторизации недействителен или уже устарел"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Что-то пошло не так во время генерации токенов. Возможно, ваш код "
|
||||
#~ "авторизации недействителен или уже устарел"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metóda nepodporovaná [%s] nie je [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -46,26 +55,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Niečo sa pokazilo počas generovania vášho tokenu. Možno je váš autorizačný "
|
||||
"kód neplatný"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Niečo sa pokazilo počas generovania vášho tokenu. Možno je váš autorizačný "
|
||||
"kód neplatný alebo už expirovaný"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,29 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:47+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/sl/>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda ni podprta [%s] ne v [GET, POST, PUT, PATCH ali DELETE]!"
|
||||
|
||||
|
|
@ -50,23 +62,11 @@ msgstr ""
|
|||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Med ustvarjanjem žetona je prišlo do napake. Morda je vaša avtorizacijska "
|
||||
"koda neveljavna ali je že potekla."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -42,21 +55,13 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,72 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoda nije podržana [%s] nije u [GET, POST, PUT, PATCH ili DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr "Microsoft osvežite Token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "Microsoft Servis"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr "Microsoft Token Validnost"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr "Microsoft Korisnički token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"Nešto je pošlo po zlu prilikom generisanja vašeg tokena. Možda je vaš "
|
||||
"Autorizacioni kod nevažeći."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Nešto je pošlo po zlu tokom generisanja vašeg tokena. Možda je vaš "
|
||||
"Autorizacioni kod nevažeći ili već istekao."
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
|
@ -1,27 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:44+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/microsoft_account/sr_Latn/>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,22 +59,14 @@ msgid "Microsoft User token"
|
|||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
msgstr "Korisnik"
|
||||
|
|
@ -1,32 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:47+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metoden stöds inte [%s] inte i [GET, POST, PUT, PATCH eller DELETE]!"
|
||||
msgstr "Metoden stöds inte [%s], inte i [GET, POST, PUT, PATCH eller DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -49,8 +59,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft Användarpollett"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,16 +68,6 @@ msgstr ""
|
|||
"Någonting gick fel vid generering av din token. Din auktoriseringskod kan "
|
||||
"vara ogiltig"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Något gick fel under din token-generation. Kanske är din auktoriseringskod "
|
||||
"ogiltig eller redan utgången"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,63 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+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_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
|
@ -1,31 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:48+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/th/>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"ไม่รองรับวิธีการ [%s] ไม่ได้อยู่ใน [GET, POST, PUT, PATCH หรือ DELETE]!"
|
||||
msgstr "ไม่รองรับวิธีการ [%s] ไม่ได้อยู่ใน [GET, POST, PUT, PATCH หรือ DELETE]!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
|
|
@ -48,24 +59,12 @@ msgid "Microsoft User token"
|
|||
msgstr "โทเค็นผู้ใช้ Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
"มีข้อผิดพลาดเกิดขึ้นระหว่างการสร้างโทเค็นของคุณ "
|
||||
"รหัสอนุญาตของคุณอาจไม่ถูกต้อง"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"มีข้อผิดพลาดเกิดขึ้นระหว่างการสร้างโทเค็นของคุณ "
|
||||
"บางทีรหัสอนุญาตของคุณอาจไม่ถูกต้องหรือหมดอายุแล้ว"
|
||||
msgstr "มีข้อผิดพลาดเกิดขึ้นระหว่างการสร้างโทเค็นของคุณ รหัสการยืนยันของคุณอาจไม่ถูกต้อง"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,29 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Halil, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-07 21:08+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Yöntem desteklenmiyor [%s] [GET, POST, PUT, PATCH veya DELETE] içinde değil!"
|
||||
|
|
@ -49,8 +60,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft Kullanıcı token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -58,17 +69,14 @@ msgstr ""
|
|||
"Belirteç oluşturma işleminiz sırasında bir şeyler ters gitti. Yetkilendirme "
|
||||
"Kodunuz geçersiz olabilir"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Belirteç oluşturma işleminiz sırasında bir şeyler ters gitti. Yetkilendirme "
|
||||
"Kodunuz geçersiz veya süresi dolmuş olabilir"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Something went wrong during your token generation. Maybe your "
|
||||
#~ "Authorization Code is invalid or already expired"
|
||||
#~ msgstr ""
|
||||
#~ "Belirteç oluşturma işleminiz sırasında bir şeyler ters gitti. "
|
||||
#~ "Yetkilendirme Kodunuz geçersiz veya süresi dolmuş olabilir"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:45+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Метод не підтримується [%s] не в [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -46,8 +59,8 @@ msgid "Microsoft User token"
|
|||
msgstr "Microsoft User token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -55,16 +68,6 @@ msgstr ""
|
|||
"Щось пішло не так під час генерації ваших токенів. Можливо, ваш код "
|
||||
"авторизації недійсний"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Щось пішло не так під час вашої генерації токенів. Може, ваш код "
|
||||
"авторизації недійсний або вже минув"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,67 +1,89 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:38+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatish nomi"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"[%s] usuli qo‘llab-quvvatlanmaydi, chunki u [GET, POST, PUT, PATCH yoki "
|
||||
"DELETE] ichida mavjud emas!"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
#, fuzzy
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr ""
|
||||
msgstr "Microsoft yangilash tokeni"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
#, fuzzy
|
||||
msgid "Microsoft Service"
|
||||
msgstr ""
|
||||
msgstr "Microsoft xizmati"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
#, fuzzy
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr ""
|
||||
msgstr "Microsoft tokenining amal qilish muddati"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
#, fuzzy
|
||||
msgid "Microsoft User token"
|
||||
msgstr ""
|
||||
msgstr "Microsoft foydalanuvchi tokeni"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Token yaratish jarayonida xatolik yuz berdi. Ehtimol, sizning avtorizatsiya "
|
||||
"kodingiz noto‘g‘ri"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
#, fuzzy
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
msgstr "Foydalanuvchi"
|
||||
|
|
@ -1,27 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 22:48+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"microsoft_account/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Phương pháp không được hỗ trợ [%s] không có trong [GET, POST, PUT, PATCH "
|
||||
|
|
@ -30,26 +44,26 @@ msgstr ""
|
|||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_rtoken
|
||||
msgid "Microsoft Refresh Token"
|
||||
msgstr "Microsoft Refresh Token"
|
||||
msgstr "Token làm mới Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_microsoft_service
|
||||
msgid "Microsoft Service"
|
||||
msgstr "Microsoft Service"
|
||||
msgstr "Dịch vụ Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token_validity
|
||||
msgid "Microsoft Token Validity"
|
||||
msgstr "Microsoft Token Validity"
|
||||
msgstr "Thời hạn hiệu lực của token Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__microsoft_calendar_token
|
||||
msgid "Microsoft User token"
|
||||
msgstr "Microsoft User token"
|
||||
msgstr "Token người dùng Microsoft"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
|
|
@ -57,16 +71,6 @@ msgstr ""
|
|||
"Đã xảy ra lỗi trong quá trình tạo mã token của bạn. Có thể Mã ủy quyền của "
|
||||
"bạn không hợp lệ"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Đã xảy ra lỗi trong quá trình tạo mã Token của bạn. Có thể Mã ủy quyền của "
|
||||
"bạn không hợp lệ hoặc đã hết hạn"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Chloe Wang (chwa)" <chwa@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-24 11:41+0000\n"
|
||||
"Last-Translator: \"Chloe Wang (chwa)\" <chwa@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/microsoft_account/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "方法 [%s] 不被 [GET, POST, PUT, PATCH 或 DELETE]支持!"
|
||||
|
||||
|
|
@ -46,20 +59,12 @@ msgid "Microsoft User token"
|
|||
msgstr "微软用户 token"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr "令牌生成过程中出错了。请重新申请授权码。"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "令牌生成过程中出错了。或许您的授权码无效或已过期。"
|
||||
msgstr "令牌生成过程中出错了。请重新申请授权码"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
|
|
|
|||
|
|
@ -1,27 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * microsoft_account
|
||||
#
|
||||
# * microsoft_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:10+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/microsoft_account/zh_Hant/>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__display_name
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_microsoft_service__id
|
||||
#: model:ir.model.fields,field_description:microsoft_account.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "該方法不支援 [%s] 於 [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
|
|
@ -46,21 +61,13 @@ msgid "Microsoft User token"
|
|||
msgstr "微軟使用者金鑰"
|
||||
|
||||
#. module: microsoft_account
|
||||
#. odoo-python
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid"
|
||||
msgstr "金鑰生成過程中出現錯誤。請重新申請授權碼。"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: code:addons/microsoft_account/models/microsoft_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "金鑰生成過程中出現錯誤。或許您的授權碼無效或已過期。"
|
||||
|
||||
#. module: microsoft_account
|
||||
#: model:ir.model,name:microsoft_account.model_res_users
|
||||
msgid "User"
|
||||
|
|
|
|||
|
|
@ -20,10 +20,31 @@ DEFAULT_MICROSOFT_GRAPH_ENDPOINT = 'https://graph.microsoft.com'
|
|||
|
||||
RESOURCE_NOT_FOUND_STATUSES = (204, 404)
|
||||
|
||||
|
||||
def _get_microsoft_client_secret(ICP_sudo, service):
|
||||
""" Return the client_secret for a specific service.
|
||||
|
||||
Note: This method serves as a hook for modules that would like share their own keys.
|
||||
This method should never be callable from a method that return it in clear, it
|
||||
should only be used directly in a request.
|
||||
|
||||
:param ICP_sudo: the model ir.config_parameters in sudo
|
||||
:param service: the service that we need the secret key
|
||||
:return: The ICP value
|
||||
:rtype: str
|
||||
"""
|
||||
return ICP_sudo.get_param('microsoft_%s_client_secret' % service)
|
||||
|
||||
|
||||
class MicrosoftService(models.AbstractModel):
|
||||
_name = 'microsoft.service'
|
||||
_description = 'Microsoft Service'
|
||||
|
||||
def _get_microsoft_client_id(self, service):
|
||||
# client id is not a secret, and can be leaked without risk. e.g. in clear in authorize uri.
|
||||
ICP = self.env['ir.config_parameter'].sudo()
|
||||
return ICP.get_param('microsoft_%s_client_id' % service)
|
||||
|
||||
def _get_calendar_scope(self):
|
||||
return 'offline_access openid Calendars.ReadWrite'
|
||||
|
||||
|
|
@ -36,82 +57,71 @@ class MicrosoftService(models.AbstractModel):
|
|||
return self.env["ir.config_parameter"].sudo().get_param('microsoft_account.token_endpoint', DEFAULT_MICROSOFT_TOKEN_ENDPOINT)
|
||||
|
||||
@api.model
|
||||
def generate_refresh_token(self, service, authorization_code):
|
||||
def _refresh_microsoft_token(self, service, rtoken):
|
||||
""" Call Microsoft API to refresh the token, with the given authorization code
|
||||
:param service : the name of the microsoft service to actualize
|
||||
:param authorization_code : the code to exchange against the new refresh token
|
||||
:param rtoken : the code to exchange against the new refresh token
|
||||
:returns the new refresh token
|
||||
"""
|
||||
Parameters = self.env['ir.config_parameter'].sudo()
|
||||
client_id = Parameters.get_param('microsoft_%s_client_id' % service)
|
||||
client_secret = Parameters.get_param('microsoft_%s_client_secret' % service)
|
||||
redirect_uri = Parameters.get_param('microsoft_redirect_uri')
|
||||
ICP_sudo = self.env['ir.config_parameter'].sudo()
|
||||
|
||||
scope = self._get_calendar_scope()
|
||||
|
||||
# Get the Refresh Token From Microsoft And store it in ir.config_parameter
|
||||
headers = {"Content-type": "application/x-www-form-urlencoded"}
|
||||
data = {
|
||||
'client_id': client_id,
|
||||
'redirect_uri': redirect_uri,
|
||||
'client_secret': client_secret,
|
||||
'scope': scope,
|
||||
'grant_type': "refresh_token"
|
||||
'client_id': self._get_microsoft_client_id(service),
|
||||
'client_secret': _get_microsoft_client_secret(ICP_sudo, service),
|
||||
'grant_type': 'refresh_token',
|
||||
'refresh_token': rtoken,
|
||||
}
|
||||
try:
|
||||
req = requests.post(self._get_token_endpoint(), data=data, headers=headers, timeout=TIMEOUT)
|
||||
req.raise_for_status()
|
||||
content = req.json()
|
||||
except requests.exceptions.RequestException as exc:
|
||||
error_msg = _("Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired")
|
||||
raise self.env['res.config.settings'].get_config_warning(error_msg) from exc
|
||||
|
||||
return content.get('refresh_token')
|
||||
microsoft_data = self._do_request(
|
||||
self._get_token_endpoint(),
|
||||
params=data,
|
||||
headers=headers,
|
||||
method='POST',
|
||||
preuri=''
|
||||
)
|
||||
response = microsoft_data[1]
|
||||
return response.get('access_token'), response.get('expires_in')
|
||||
|
||||
@api.model
|
||||
def _get_authorize_uri(self, from_url, service, scope):
|
||||
def _get_authorize_uri(self, from_url, service, scope, redirect_uri):
|
||||
""" This method return the url needed to allow this instance of Odoo to access to the scope
|
||||
of gmail specified as parameters
|
||||
"""
|
||||
state = {
|
||||
'd': self.env.cr.dbname,
|
||||
's': service,
|
||||
'f': from_url
|
||||
'f': from_url,
|
||||
'u': self.env['ir.config_parameter'].sudo().get_param('database.uuid'),
|
||||
}
|
||||
|
||||
get_param = self.env['ir.config_parameter'].sudo().get_param
|
||||
base_url = get_param('web.base.url', default='http://www.odoo.com?NoBaseUrl')
|
||||
client_id = get_param('microsoft_%s_client_id' % (service,), default=False)
|
||||
|
||||
encoded_params = urls.url_encode({
|
||||
'response_type': 'code',
|
||||
'client_id': client_id,
|
||||
'client_id': self._get_microsoft_client_id(service),
|
||||
'state': json.dumps(state),
|
||||
'scope': scope,
|
||||
'redirect_uri': base_url + '/microsoft_account/authentication',
|
||||
'redirect_uri': redirect_uri,
|
||||
'access_type': 'offline'
|
||||
})
|
||||
return "%s?%s" % (self._get_auth_endpoint(), encoded_params)
|
||||
|
||||
@api.model
|
||||
def _get_microsoft_tokens(self, authorize_code, service):
|
||||
def _get_microsoft_tokens(self, authorize_code, service, redirect_uri):
|
||||
""" Call Microsoft API to exchange authorization code against token, with POST request, to
|
||||
not be redirected.
|
||||
"""
|
||||
get_param = self.env['ir.config_parameter'].sudo().get_param
|
||||
base_url = get_param('web.base.url', default='http://www.odoo.com?NoBaseUrl')
|
||||
client_id = get_param('microsoft_%s_client_id' % (service,), default=False)
|
||||
client_secret = get_param('microsoft_%s_client_secret' % (service,), default=False)
|
||||
ICP_sudo = self.env['ir.config_parameter'].sudo()
|
||||
scope = self._get_calendar_scope()
|
||||
|
||||
headers = {"content-type": "application/x-www-form-urlencoded"}
|
||||
data = {
|
||||
'code': authorize_code,
|
||||
'client_id': client_id,
|
||||
'client_secret': client_secret,
|
||||
'client_id': self._get_microsoft_client_id(service),
|
||||
'client_secret': _get_microsoft_client_secret(ICP_sudo, service),
|
||||
'grant_type': 'authorization_code',
|
||||
'scope': scope,
|
||||
'redirect_uri': base_url + '/microsoft_account/authentication'
|
||||
'redirect_uri': redirect_uri
|
||||
}
|
||||
try:
|
||||
dummy, response, dummy = self._do_request(self._get_token_endpoint(), params=data, headers=headers, method='POST', preuri='')
|
||||
|
|
@ -169,6 +179,6 @@ class MicrosoftService(models.AbstractModel):
|
|||
status = error.response.status_code
|
||||
response = {}
|
||||
else:
|
||||
_logger.exception("Bad microsoft request : %s !", error.response.content)
|
||||
_logger.exception("Bad microsoft request: %s!", error.response.content)
|
||||
raise error
|
||||
return (status, response, ask_time)
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from datetime import timedelta
|
|||
from odoo import api, fields, models, _
|
||||
|
||||
|
||||
class User(models.Model):
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
microsoft_calendar_rtoken = fields.Char('Microsoft Refresh Token', copy=False, groups="base.group_system")
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-microsoft_account"
|
||||
version = "16.0.0"
|
||||
description = "Microsoft Users - Odoo addon"
|
||||
description = "Microsoft Users -
|
||||
Odoo addon
|
||||
"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-base_setup>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-base_setup>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -16,7 +18,7 @@ classifiers = [
|
|||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue