Начальное наполнение
This commit is contained in:
parent
6fcd188531
commit
deeb2ce6b9
7
__init__.py
Normal file
7
__init__.py
Normal file
@ -0,0 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import controllers
|
||||
|
||||
from .models.google_service import TIMEOUT # noqa
|
13
__manifest__.py
Normal file
13
__manifest__.py
Normal file
@ -0,0 +1,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Google Users',
|
||||
'category': 'Hidden/Tools',
|
||||
'description': """
|
||||
The module adds google user in res user.
|
||||
========================================
|
||||
""",
|
||||
'depends': ['base_setup'],
|
||||
'license': 'LGPL-3',
|
||||
}
|
1
controllers/__init__.py
Normal file
1
controllers/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from . import main
|
38
controllers/main.py
Normal file
38
controllers/main.py
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
from werkzeug.exceptions import BadRequest
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class GoogleAuth(http.Controller):
|
||||
|
||||
@http.route('/google_account/authentication', type='http', auth="public")
|
||||
def oauth2callback(self, **kw):
|
||||
""" This route/function is called by Google when user Accept/Refuse the consent of Google """
|
||||
state = json.loads(kw.get('state', '{}'))
|
||||
service = state.get('s')
|
||||
url_return = state.get('f')
|
||||
if (not service or (kw.get('code') and not url_return)):
|
||||
raise BadRequest()
|
||||
|
||||
if kw.get('code'):
|
||||
base_url = request.httprequest.url_root.strip('/') or request.env.user.get_base_url()
|
||||
access_token, refresh_token, ttl = request.env['google.service']._get_google_tokens(
|
||||
kw['code'],
|
||||
service,
|
||||
redirect_uri=f'{base_url}/google_account/authentication'
|
||||
)
|
||||
service_field = f'google_{service}_account_id'
|
||||
if service_field in request.env.user:
|
||||
request.env.user[service_field]._set_auth_tokens(access_token, refresh_token, ttl)
|
||||
else:
|
||||
raise Warning('No callback field for service <%s>' % service)
|
||||
return request.redirect(url_return)
|
||||
elif kw.get('error'):
|
||||
return request.redirect("%s%s%s" % (url_return, "?error=", kw['error']))
|
||||
else:
|
||||
return request.redirect("%s%s" % (url_return, "?error=Unknown_error"))
|
33
i18n/af.po
Normal file
33
i18n/af.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
33
i18n/am.po
Normal file
33
i18n/am.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/ar.po
Normal file
44
i18n/ar.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "خدمة Google "
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]! "
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"حدث خطأ ما خلال إنشاء الرمز الخاص بك. قد يكون رمز التفويض غير صالح أو نتهت "
|
||||
"مدة صلاحيته بالفعل "
|
33
i18n/az.po
Normal file
33
i18n/az.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
45
i18n/bg.po
Normal file
45
i18n/bg.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Методът не е поддържан [%s] не и във [ВЗЕМЕТЕ, ПУБЛИКУВАЙТЕ, ПОСТАВЕТЕ, "
|
||||
"УРЕДЕТЕ или ИЗТРИЙТЕ]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Нещо се обърка при създаването на токена Ви. Възможно е кодът Ви за "
|
||||
"упълномощаване да е невалиден или вече да е изтекъл"
|
38
i18n/bs.po
Normal file
38
i18n/bs.po
Normal file
@ -0,0 +1,38 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
43
i18n/ca.po
Normal file
43
i18n/ca.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Arnau Ros, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Arnau Ros, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Servei de Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
44
i18n/cs.po
Normal file
44
i18n/cs.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google služba"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
44
i18n/da.po
Normal file
44
i18n/da.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
44
i18n/de.po
Normal file
44
i18n/de.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google-Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
37
i18n/el.po
Normal file
37
i18n/el.po
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
35
i18n/en_AU.po
Normal file
35
i18n/en_AU.po
Normal file
@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/en_GB.po
Normal file
36
i18n/en_GB.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/es.po
Normal file
44
i18n/es.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Servicio de Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
"Metodo no soportado [%s] no está en [GET, POST, PUT, PATCH or DELETE]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Algo salió mal durante la generación del token. Es probable que el código de"
|
||||
" autorización sea inválido o esté expirado."
|
45
i18n/es_419.po
Normal file
45
i18n/es_419.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Servicio de Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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 "
|
||||
"DELETE]"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
36
i18n/es_BO.po
Normal file
36
i18n/es_BO.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_CL.po
Normal file
36
i18n/es_CL.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_CO.po
Normal file
36
i18n/es_CO.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_CR.po
Normal file
36
i18n/es_CR.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_DO.po
Normal file
36
i18n/es_DO.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_EC.po
Normal file
36
i18n/es_EC.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
35
i18n/es_PA.po
Normal file
35
i18n/es_PA.po
Normal file
@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/language/es_PA/)\n"
|
||||
"Language: es_PA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_PE.po
Normal file
36
i18n/es_PE.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_PY.po
Normal file
36
i18n/es_PY.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/es_VE.po
Normal file
36
i18n/es_VE.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/et.po
Normal file
44
i18n/et.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Anna, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google'i teenus"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
36
i18n/eu.po
Normal file
36
i18n/eu.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
41
i18n/fa.po
Normal file
41
i18n/fa.po
Normal file
@ -0,0 +1,41 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "سرویس گوگل"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
45
i18n/fi.po
Normal file
45
i18n/fi.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Googlen Palvelu"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
36
i18n/fo.po
Normal file
36
i18n/fo.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
45
i18n/fr.po
Normal file
45
i18n/fr.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Services Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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] "
|
||||
"!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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é."
|
35
i18n/fr_BE.po
Normal file
35
i18n/fr_BE.po
Normal file
@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/fr_CA.po
Normal file
36
i18n/fr_CA.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/gl.po
Normal file
36
i18n/gl.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
37
i18n/google_account.pot
Normal file
37
i18n/google_account.pot
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:55+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
38
i18n/gu.po
Normal file
38
i18n/gu.po
Normal file
@ -0,0 +1,38 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Turkesh Patel <turkesh4friends@gmail.com>, 2018
|
||||
# Dharmraj Jhala <dja@openerp.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Dharmraj Jhala <dja@openerp.com>, 2018\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
43
i18n/he.po
Normal file
43
i18n/he.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ExcaliberX <excaliberx@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "שירות Goggle"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "אירעה שגיאה במהלך יצירת הטוקן שלך. יתכן כי קוד האישור שלך פג תוקף"
|
37
i18n/hr.po
Normal file
37
i18n/hr.po
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Servis"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_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: google_account
|
||||
#: code:addons/google_account/models/google_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."
|
45
i18n/hu.po
Normal file
45
i18n/hu.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: krnkris, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google szolgáltatás"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
44
i18n/id.po
Normal file
44
i18n/id.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
33
i18n/is.po
Normal file
33
i18n/is.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
43
i18n/it.po
Normal file
43
i18n/it.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Servizio Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr "Metodo non supportato [%s] non in [GET, POST, PUT, PATCH o DELETE]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Qualcosa è andato storto durante la generazione del tuo token. Probabilmente"
|
||||
" il tuo Authorization Code non è valido o è scaduto"
|
41
i18n/ja.po
Normal file
41
i18n/ja.po
Normal file
@ -0,0 +1,41 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Googleサービス"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]内にありません!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "トークンの生成中に何か問題が発生しました。 承認コードが無効であるかすでに失効している可能性があります "
|
36
i18n/ka.po
Normal file
36
i18n/ka.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/kab.po
Normal file
36
i18n/kab.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/km.po
Normal file
36
i18n/km.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
41
i18n/ko.po
Normal file
41
i18n/ko.po
Normal file
@ -0,0 +1,41 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "구글 서비스"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "토큰 생성 중에 문제가 발생했습니다. 인증 코드가 잘못되었거나 이미 만료되었을 수 있습니다."
|
33
i18n/lb.po
Normal file
33
i18n/lb.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:10+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
35
i18n/ln.po
Normal file
35
i18n/ln.po
Normal file
@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 18:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Lingala (http://www.transifex.com/odoo/odoo-9/language/ln/)\n"
|
||||
"Language: ln\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
33
i18n/lo.po
Normal file
33
i18n/lo.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/lt.po
Normal file
44
i18n/lt.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "\"Google\" paslaugos"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
37
i18n/lv.po
Normal file
37
i18n/lv.po
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/mk.po
Normal file
36
i18n/mk.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
35
i18n/ml_IN.po
Normal file
35
i18n/ml_IN.po
Normal file
@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2016-04-22 12:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
38
i18n/mn.po
Normal file
38
i18n/mn.po
Normal file
@ -0,0 +1,38 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google үйлчилгээ"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_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] байна!"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr "Тасалбарыг боловсруулах үед алдаа гарлаа. Магадгүй таны Баталгаажуулах Код буруу эсвэл хугацаа нь дууссан байх"
|
37
i18n/nb.po
Normal file
37
i18n/nb.po
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
33
i18n/ne.po
Normal file
33
i18n/ne.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/nl.po
Normal file
44
i18n/nl.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
43
i18n/pl.po
Normal file
43
i18n/pl.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Usługa Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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. Być może Twój kod "
|
||||
"autoryzacyjny jest nieważny lub już wygasł."
|
44
i18n/pt.po
Normal file
44
i18n/pt.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
45
i18n/pt_BR.po
Normal file
45
i18n/pt_BR.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Serviço Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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 está em [GET, POST, PUT, PATCH ou DELETE]]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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 seu código de autorização seja "
|
||||
"inválido ou já expirou"
|
38
i18n/ro.po
Normal file
38
i18n/ro.po
Normal file
@ -0,0 +1,38 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Serviciu Google"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_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"
|
45
i18n/ru.po
Normal file
45
i18n/ru.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Сервис Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Что-то пошло не так во время генерации токенов. Возможно, ваш код "
|
||||
"авторизации недействителен или уже устарел"
|
43
i18n/sk.po
Normal file
43
i18n/sk.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Služba Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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ý"
|
37
i18n/sl.po
Normal file
37
i18n/sl.po
Normal file
@ -0,0 +1,37 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
36
i18n/sq.po
Normal file
36
i18n/sq.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
43
i18n/sr.po
Normal file
43
i18n/sr.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 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: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google usluga"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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."
|
38
i18n/sr@latin.po
Normal file
38
i18n/sr@latin.po
Normal file
@ -0,0 +1,38 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
44
i18n/sv.po
Normal file
44
i18n/sv.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
36
i18n/ta.po
Normal file
36
i18n/ta.po
Normal file
@ -0,0 +1,36 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2016-02-05 09:53+0000\n"
|
||||
"Last-Translator: Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!"
|
||||
msgstr ""
|
||||
|
||||
#. module: google_account
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid "Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"
|
||||
msgstr ""
|
43
i18n/th.po
Normal file
43
i18n/th.po
Normal file
@ -0,0 +1,43 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"มีข้อผิดพลาดเกิดขึ้นระหว่างการสร้างโทเค็นของคุณ "
|
||||
"บางทีรหัสอนุญาตของคุณอาจไม่ถูกต้องหรือหมดอายุแล้ว"
|
46
i18n/tr.po
Normal file
46
i18n/tr.po
Normal file
@ -0,0 +1,46 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Halil, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Umur Akın <umura@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Hizmeti"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
44
i18n/uk.po
Normal file
44
i18n/uk.po
Normal file
@ -0,0 +1,44 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google Service"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr ""
|
||||
"Щось пішло не так під час вашої генерації токенів. Може, ваш код "
|
||||
"авторизації недійсний або вже минув"
|
45
i18n/vi.po
Normal file
45
i18n/vi.po
Normal file
@ -0,0 +1,45 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Dịch vụ của Google"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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 "
|
||||
"hoặc DELETE]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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"
|
41
i18n/zh_CN.po
Normal file
41
i18n/zh_CN.po
Normal file
@ -0,0 +1,41 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "谷歌服务"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]支持!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "令牌生成过程中出错了。或许您的授权码无效或已过期。"
|
41
i18n/zh_TW.po
Normal file
41
i18n/zh_TW.po
Normal file
@ -0,0 +1,41 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * google_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: google_account
|
||||
#: model:ir.model,name:google_account.model_google_service
|
||||
msgid "Google Service"
|
||||
msgstr "Google服務"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_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]!"
|
||||
|
||||
#. module: google_account
|
||||
#. odoo-python
|
||||
#: code:addons/google_account/models/google_service.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Something went wrong during your token generation. Maybe your Authorization "
|
||||
"Code is invalid or already expired"
|
||||
msgstr "金鑰生成過程中出現錯誤。或許您的授權碼無效或已過期。"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import google_service
|
148
models/google_service.py
Normal file
148
models/google_service.py
Normal file
@ -0,0 +1,148 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import datetime
|
||||
import logging
|
||||
|
||||
import json
|
||||
import requests
|
||||
from werkzeug import urls
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
TIMEOUT = 20
|
||||
|
||||
GOOGLE_AUTH_ENDPOINT = 'https://accounts.google.com/o/oauth2/auth'
|
||||
GOOGLE_TOKEN_ENDPOINT = 'https://accounts.google.com/o/oauth2/token'
|
||||
GOOGLE_API_BASE_URL = 'https://www.googleapis.com'
|
||||
|
||||
|
||||
def _get_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('google_%s_client_secret' % service)
|
||||
|
||||
class GoogleService(models.AbstractModel):
|
||||
_name = 'google.service'
|
||||
_description = 'Google Service'
|
||||
|
||||
def _get_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('google_%s_client_id' % service)
|
||||
|
||||
@api.model
|
||||
def _get_authorize_uri(self, service, scope, redirect_uri, state=None, approval_prompt=None, access_type=None):
|
||||
""" This method return the url needed to allow this instance of Odoo to access to the scope
|
||||
of gmail specified as parameters
|
||||
"""
|
||||
params = {
|
||||
'response_type': 'code',
|
||||
'client_id': self._get_client_id(service),
|
||||
'scope': scope,
|
||||
'redirect_uri': redirect_uri,
|
||||
}
|
||||
|
||||
if state:
|
||||
params['state'] = state
|
||||
|
||||
if approval_prompt:
|
||||
params['approval_prompt'] = approval_prompt
|
||||
|
||||
if access_type:
|
||||
params['access_type'] = access_type
|
||||
|
||||
|
||||
encoded_params = urls.url_encode(params)
|
||||
return "%s?%s" % (GOOGLE_AUTH_ENDPOINT, encoded_params)
|
||||
|
||||
@api.model
|
||||
def _get_google_tokens(self, authorize_code, service, redirect_uri):
|
||||
""" Call Google API to exchange authorization code against token, with POST request, to
|
||||
not be redirected.
|
||||
"""
|
||||
ICP = self.env['ir.config_parameter'].sudo()
|
||||
|
||||
headers = {"content-type": "application/x-www-form-urlencoded"}
|
||||
data = {
|
||||
'code': authorize_code,
|
||||
'client_id': self._get_client_id(service),
|
||||
'client_secret': _get_client_secret(ICP, service),
|
||||
'grant_type': 'authorization_code',
|
||||
'redirect_uri': redirect_uri
|
||||
}
|
||||
try:
|
||||
dummy, response, dummy = self._do_request(GOOGLE_TOKEN_ENDPOINT, params=data, headers=headers, method='POST', preuri='')
|
||||
return response.get('access_token'), response.get('refresh_token'), response.get('expires_in')
|
||||
except requests.HTTPError as e:
|
||||
_logger.error(e)
|
||||
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)
|
||||
|
||||
@api.model
|
||||
def _do_request(self, uri, params=None, headers=None, method='POST', preuri=GOOGLE_API_BASE_URL, timeout=TIMEOUT):
|
||||
""" Execute the request to Google API. Return a tuple ('HTTP_CODE', 'HTTP_RESPONSE')
|
||||
:param uri : the url to contact
|
||||
:param params : dict or already encoded parameters for the request to make
|
||||
:param headers : headers of request
|
||||
:param method : the method to use to make the request
|
||||
:param preuri : pre url to prepend to param uri.
|
||||
"""
|
||||
if params is None:
|
||||
params = {}
|
||||
if headers is None:
|
||||
headers = {}
|
||||
|
||||
assert urls.url_parse(preuri + uri).host in [
|
||||
urls.url_parse(url).host for url in (GOOGLE_TOKEN_ENDPOINT, GOOGLE_API_BASE_URL)
|
||||
]
|
||||
|
||||
# Remove client_secret key from logs
|
||||
if isinstance(params, str):
|
||||
_log_params = json.loads(params) or {}
|
||||
else:
|
||||
_log_params = (params or {}).copy()
|
||||
if _log_params.get('client_secret'):
|
||||
_log_params['client_secret'] = _log_params['client_secret'][0:4] + 'x' * 12
|
||||
|
||||
_logger.debug("Uri: %s - Type : %s - Headers: %s - Params : %s!", uri, method, headers, _log_params)
|
||||
|
||||
ask_time = fields.Datetime.now()
|
||||
try:
|
||||
if method.upper() in ('GET', 'DELETE'):
|
||||
res = requests.request(method.lower(), preuri + uri, params=params, timeout=timeout)
|
||||
elif method.upper() in ('POST', 'PATCH', 'PUT'):
|
||||
res = requests.request(method.lower(), preuri + uri, data=params, headers=headers, timeout=timeout)
|
||||
else:
|
||||
raise Exception(_('Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!', method))
|
||||
res.raise_for_status()
|
||||
status = res.status_code
|
||||
|
||||
if int(status) == 204: # Page not found, no response
|
||||
response = False
|
||||
else:
|
||||
response = res.json()
|
||||
|
||||
try:
|
||||
ask_time = datetime.strptime(res.headers.get('date', ''), "%a, %d %b %Y %H:%M:%S %Z")
|
||||
except ValueError:
|
||||
pass
|
||||
except requests.HTTPError as error:
|
||||
if error.response.status_code in (204, 404):
|
||||
status = error.response.status_code
|
||||
response = ""
|
||||
else:
|
||||
_logger.exception("Bad google request : %s!", error.response.content)
|
||||
raise error
|
||||
return (status, response, ask_time)
|
Loading…
x
Reference in New Issue
Block a user